Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
141074 蔡胤泽 年龄问题 C++ Accepted 1 MS 260 KB 159 2025-12-21 09:47:05

Tests(1/1):


Code:

#include <bits/stdc++.h> using namespace std; int main(){ int n = 10; for(int i = 1;i<= 4;i++) { n = n + 2; } cout << n; return 0; }