Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
112318 包老师 求和 C++ Running & Judging 0 MS 0 KB 264 2025-03-09 12:52:19

Tests(0/0):


Code:

#include <bits/stdc++.h>//包含头文件名bits/stdc++.h using namespace std;//使用命名空间std int main(){//程序的开始、入口 int a; int b; int c; a=123; b=456; c=a+b; cout<<"sum is "<<c; return 0;// 程序的结束、出口 }