这个该怎样修改才不会“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;
}
次程序与上面的区别在哪里?