#include<stdio.h>
int main()
{
int x=1;
int y=1;
int n;
n=x+y;
printf("1+1=?\n");
system("Pause");
printf("计算结果:%d\n",n);
system("Pause");
int sj=10;
int mxs;
int gz;
mxs=10;
gz=sj*mxs;
printf("计算小明这个清洁工一天的工资\n");
system("Pause");
printf("小明每天的清洁时间:%d\n",sj);
system("Pause");
printf("小明每小时清洁的工资:%d\n",mxs);
system("Pause");
printf("小明一天的工资:%d\n",gz);
system("Pause");
return 0;
}
以上代码.
#include<stdio.h>
#include<windows.h>//这里少了system("Pause")的头文件啊
int main()
{
int x=1;
int y=1;
int n;
int sj=10;//最好把所用的变量,定义放在前面
int mxs;
int gz;
n=x+y;
printf("1+1=?\n");
system("Pause");
printf("计算结果:%d\n",n);
system("Pause");
mxs=10;
gz=sj*mxs;
printf("计算小明这个清洁工一天的工资\n");
system("Pause");
printf("小明每天的清洁时间:%d\n",sj);
system("Pause");
printf("小明每小时清洁的工资:%d\n",mxs);
system("Pause");
printf("小明一天的工资:%d\n",gz);
system("Pause");
return 0;
}
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息