太感谢你了~!!
你后面为什么要加个getch();
呢?
#include <stdio.h>
main()
{
float x=1.2,y=2.4,z=-3.6;
int a=3,b=4,c=5;
long u=51274,n=128765;
char c1='a',c2='b';
a=3,b=4,c=5,x=1.2,y=2.4,z=-3.6,u=51274,n=128765,c1='a',c2='b';
printf("a=%2d b=%2d c=%2d\n",a,b,c);
printf("x=%f,y=%f,z=%f\n",x,y,z);
printf("x+y=%5.2f
y+z=%.2f z+x=%.2f\n",x+y,y+z,z+x);
printf("
u=%6ld n=%9ld\n",u,n);
printf("c1='%c' or%3d\n",c1,c1);
printf("c2='%c' or%3d\n",c2,c2);
你这为什么是.2?
u=%6ld n=%9ld\n",怎么比我多个L?
[此贴子已经被作者于2005-3-22 13:59:54编辑过]