为什么吸氧会WA啊(恼
#include <iostream> using namespace std; int main() { int n,ans; cin >> n; for(int i = 1; i <= n; i++) { ans += i; } cout << ans; }