当前位置:首页
> Luz 第2990页
Luz 管理员
暂无介绍
89860 篇文章 33 次评论PROGRAMMING:The real Chinese character
Please program to output the following Chinese character dot matrix graphics.{int a=1…
PROGRAMMING:Application of sizeof operator
Please program to output how many bytes sizeof (long double), sizeof (3.14l) and sizeof (314ll) occupy in memory.Use the…
PROGRAMMING:Sizeof operator
C language provides us with a function like operator sizeof, the basic use of which is sizeof (parameter). The parameter…
PROGRAMMING:Priority and combination
```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
```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
Please input the following code and understand the constants and variables in the program.```#includeint main(){int a,b;…
PROGRAMMING:My father's salary
"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
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
Please input the procedure of textbook case 02-01-03```#includeint main(){//% O and% x represent octal and hexadecimal i…