标题:这个该怎样修改才不会“Output Limit Exceed“
只看楼主
xiaxin
Rank: 1
等 级:新手上路
帖 子:41
专家分:0
注 册:2007-10-21
 问题点数:0 回复次数:0 
这个该怎样修改才不会“Output Limit Exceed“
#include<iostream>
using namespace std;
int main()
{
int a;
while(1)
{ cin>>a;
if((a==EOF)break;//为什么不能写成if((cin>>a)==EOF)break;
cout<<-a<<endl;

}
system("pause");
return 0;
}
为什么直接输入F6是输出的是一堆乱码,导致超时了,
#include<stdio.h>
int main()
{
int a;
while (1)
{
if (scanf("%d", &a)==EOF) break;
printf("%d\n", -a);
}
return 0;
}
次程序与上面的区别在哪里?
搜索更多相关主题的帖子: Output Exceed Limit 
2007-10-21 21:32



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-179645-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.627425 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved