Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
113124 袁星皓 13求1+2-3+4-5+……n的值 C++ Accepted 1 MS 276 KB 203 2025-03-15 11:59:10

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int n,a=0,b=0; cin>>n; for(int i=2;i<=n;i++) { if(i%2==0) { a=a+i; } else b=b+i; } cout<<a-b+1; return 0; }