Run ID:7982
提交时间:2025-05-31 20:26:25
Online Judge C++题库系统 OJ 首页 问题列表 状态 排行榜 赖梓乐 首页 问题列表 02简单两数相加II ×提交成功 02简单两数相加II 定义两个变量a,b,输出他们的和 Input 两个整数分别为a,b Output 输出一行一个整数a+b的和 Examples Input 1 1 Output 2 Input 2 3 Output 5 来源 lema Time limit 1 second Memory limit 128 MB 提交记录 刚刚 Wrong Answer × Run ID:7981 提交时间:2025-05-31 20:25:16 #include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ long long a,b; cin>>a>>b; cout<<a+b; return 0; } © C++题库系统 OJ 2025