1.有错误,函数没有返回值,应该加上return 0表示安全返回。
2.(a)指令:
语句
(b)输出
Parkinson's Law:
Work expands so as to fill the time
available for its completion.
3.程序
#include <stdio.h>
int main()
{
int a,b,c;
flaot d,e,f;
printf("a=%d\nb=%d\nc=%d\nd=%f\ne=%f\nf=%f\n",a,b,c,d,e,f);
return 0;
}
在我的电脑上的执行结果