我的代码:
#include<iostream>
using namespace std;
__int64 n;
void Solve()
{
while(cin>>n)
{
cout<<(n * n + n) / 2 + 1<<endl;
}
return ;
}
int main()
{
Solve();
return 0;
}
为啥在第一组测试数据会PE?输出哪有问题了?
ACM水题, SGU135
clude<iostream> using namespace std;__int64 n;void Solve(){ while(cin>>n){ cout<<(n * n + n) \/ 2 + 1<<endl;} return ;} int main()