0
已解决
何冯成
中级光能
中级光能
不知道要输出什么
所以WA了
代码:
#include<iostream>
#include<cstdio> //文件操作的头文件
#include<cmath>
#include<algorithm>
using namespace std;
int main(){
//freopen("game.in","r",stdin);
//freopen("game.out","w",stdout);
int sum=0,cnt=0;
for(int i=2;i<=3000;i+=2){
if(sum>2019){
cout<<cnt;
break;
}
sum+=i;
cnt++;
}
//fclose(stdin);
//fclose(stdout);
return 0;
}
大佬们找错