竞赛
考级
A🙃smiLe🙂C
这题挺简单的,一蒙就对
boluo_1
THUNDER
读取输入,拆分成两个整数 a, b = map(int, input().split()) 计算和 result = a + b 输出结果 print(result)
ZDZL_天之神
🐱👤
虫大
有事找大号
#include <iostream> using namespace std; int main(){ int a,b; cin>>a>>b; cout<<a+b; return 0; }
苍耀
答案是5\bold{答案是}\color{red}\bold{5}答案是5
LuoYu
#include<bits/stdc++.h> using namespace std; int main() { srand(time(NULL)); cout<<rand()%6; }
原神牢玩家
#include<iostream> using namespace std; int main(){ int a,b; cin>>a>>b; cout<<a+b; return 0; }
159****2415
python: C++:
Xzops
接收用户输入 input_str = input() 分割输入的字符串 num_str_list = input_str.split() 将字符串转换成整数 num1 = int(num_str_list[0]) num2 = int(num_str_list[1]) 计算和 sum_result = num1 + num2 输出结果 print(sum_result)
北京赵子有实力,和平,暗区老玩家
num1, num2 = map(int,input().split()) sum_of_numbers = num1 + num2 print(f'两数之和为:{sum_of_numbers}'') 瞎写的,专门紫菜那些抄题的人,哈哈哈......!
#include<iostream> using namespace std; int main(){ int a; int b; cin >> a; cin >> b; cout << a+b; return 0; }
shao
#include<iostream> #include<algorithm> #include<string> #include<queue> #include<stack> #include<iomanip> using namespace std; int main() { int a, b; cin >> a >> b; cout << a + b; return 0; }
T0
#include <iostream> using namespace std; int main(){ int a,b; cin>>a>>b; cout << a+b; return 0; }
150****9508
用python也可以做出来,还很简单,就3行。 用python也可以正常提交的。
白骨龍鳥
酸酸柠檬精 (菜就多练)
共760条