-->
当前位置:首页 > Luz 第2990页
Luz

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

PROGRAMMING:The real Chinese character

Luz5年前 (2021-05-10)388
Please program to output the following Chinese character dot matrix graphics.![ 111111111111111111111111.png](~/71df9968…

PROGRAMMING:The 100th anniversary of the founding of the people's Republic of China

Luz5年前 (2021-05-10)339
Input the program of textbook case 02-01-02 and output the following results.```#include#define N 1949int main(){int a=1…

PROGRAMMING:Application of sizeof operator

Luz5年前 (2021-05-10)411
Please program to output how many bytes sizeof (long double), sizeof (3.14l) and sizeof (314ll) occupy in memory.Use the…

PROGRAMMING:Sizeof operator

Luz5年前 (2021-05-10)389
C language provides us with a function like operator sizeof, the basic use of which is sizeof (parameter). The parameter…

PROGRAMMING:Priority and combination

Luz5年前 (2021-05-10)441
```Please execute the code and think about priorities and combinations.#includeint main(){int a,b,c;a=100; b=20; c=3;p…

PROGRAMMING:Output constant data training

Luz5年前 (2021-05-10)342
```The first line outputs the decimal, octal and hexadecimal forms of 2049.The second line outputs the area of the circl…

PROGRAMMING:Product of two numbers

Luz5年前 (2021-05-10)333
Please input the following code and understand the constants and variables in the program.```#includeint main(){int a,b;…

PROGRAMMING:My father's salary

Luz5年前 (2021-05-10)440
"When I was a child, I used to sit on my father's shoulder. Father is the ladder to heaven, father is the ox to pull the…

PROGRAMMING:Priority and combination training

Luz5年前 (2021-05-10)366
The program reads in three integers a, B, C, and then outputs the values of expressions - A-B * C and - (a-b) * C. Think…

PROGRAMMING:Output of different types of constants

Luz5年前 (2021-05-10)412
Please input the procedure of textbook case 02-01-03```#includeint main(){//% O and% x represent octal and hexadecimal i…