C语言入门,代码错误,但是我实在看不出来那里错误,
#include <stdio.h>#include <stdlib.h>
int main()
{
float a,b,c,d;
a=11.22;
b=22.33;
c=33.44;
d=a+b+c;
printf("%f+%f+%f=%f",a,b,c,d);
system ("color b2");
printf("\n");
system("pause");
return 0;
}
2014-06-28 09:17
2014-06-28 10:15
2014-06-28 10:44

2014-06-28 11:01
2014-06-28 11:27

2014-06-28 19:24