DEV-C++ 一个简单的源代码的错误 求教,我是新人
解决时间 2021-03-10 06:50
- 提问者网友:半生酒醒
- 2021-03-09 18:23
#include
int x,y;
int main(void)
{
for(x=0;x<0;x++,printf("\n"))
for(y=0;y<0;y++)
printf("x");
system("pause")
return 0;
}
DEV-C++显示是这个错了 system("pause")
最佳答案
- 五星知识达人网友:第四晚心情
- 2021-03-09 19:51
//inxk@163.com
//16:46 2011/11/20
//3 wrongs in your code
//Here is ok now!
#include //1,Instead of .
using namespace std;//2,Need this, or add "std::" before "system".
int main(void)
{
int x,y;
for(x=0;x<0;x++,printf("\n"))
for(y=0;y<0;y++)
printf("x");
system("pause");//3,Need ";" in the end.
return 0;
}
全部回答
- 1楼网友:末日狂欢
- 2021-03-09 21:19
最简单方法:
#include <stdio.h>
#include<math.h>
void main()
{
printf("8\n");
printf("88\n");
printf("888\n");
printf("8888\n");
printf("8888888888888\n");
printf("8888\n");
printf("888\n");
printf("88\n");
printf("8\n");
system("pause");
}
我要举报
大家都在看
推荐资讯