Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
119301 黄梓皓 13求1+2-3+4-5+……n的值 C++ Accepted 1 MS 268 KB 239 2025-05-17 13:01:19

Tests(10/10):


Code:

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