Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
123984 陈华仁星 13求1+2-3+4-5+……n的值 C++ Accepted 1 MS 196 KB 222 2025-07-10 15:31:28

Tests(10/10):


Code:

#include <cstdio> #include <algorithm> using namespace std; int main() { int n,a=0,b=0; scanf("%d",&n); for(int i=2;i<=n;i++) { if(i%2==0) a+=i; else b+=i; } printf("%d",1+a-b); return 0; }