码迷,mamicode.com
首页 > 其他好文 > 详细

console一闪而过的解决办法

时间:2014-12-06 16:36:03      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:io   ar   sp   for   on   bs   nbsp   br   方法   

真的是渣渣啊我!!

解决方法一:#include <stdlib.h> ....... system("pause")  pause:暂停

解决方法二:#include <stdio.h>........ fflush(stdin);getchar();//后面两句都要有,亲测。

至于ctrl +F5 不行(网上他们这个可以,不过我没事出来)。

#include <stdio.h>
#include <stdlib.h>
int main(void){
int i;
int sum=0;
for(i=1;i<=100;i++)
if(i%6==0)
sum=sum+i;
printf("%d\n",sum);
system("pause");
//fflush(stdin);方法二
//getchar();
return 0;
}

无限后悔中……

console一闪而过的解决办法

标签:io   ar   sp   for   on   bs   nbsp   br   方法   

原文地址:http://www.cnblogs.com/silenceCorner/p/4148336.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!