203 B
203 B
1.
a. 86,1040
b. 3.02530e+01
c. 83.1620
d. 1e-06
2.
float x = 0.12345;
// a
printf("%-8.1e", x);
// b
printf("%10.6e", x);
// c
printf("%8.3f", x);
// d
printf("%-6.0f", x);