A+B(1) 计算a+b 数据范围: 数据组数 1≤�≤100 1≤t≤100 , 数据大小满足 1≤�≤1000 1≤n≤1000 时间限制:C/C++ 1秒,其他语言2秒空间限制:C/C++ 256M,其他语言512M 输入描述:输入包括两个正整数a,b(1 <= a, b <= 1000),输入数据包括多组。输出描述:输出a+b的结果示例1 输入例子: 1...
输出描述: 对于每组用例输出一行排序后的字符串,用','隔开,无结尾空格 输出描述: 对于每组用例输出一行排序后的字符串,用','隔开,无结尾空格 示例1 输入例子: a,c,bb f,dddd nowcoder 输出例子: a,bb,c dddd,f nowcoder 我的代码: //#include <iostream> #include <bits/stdc++.h> using namespace...
data=list(map(int,input().strip().split()))print(sum(data))exceptEOFError:break 8. 输入有两行,第一行n 。第二行是n个空格隔开的字符串,进行排序 n=int(input()) words=[xforxininput().strip().split()] words.sort()#list.sort( key=None, reverse=False)#reverse -- 排序规则,reverse =...
python3 牛客网:OJ在线编程常见输入输出练习(ACM模式) 牛客网: 校招笔试真题_C++工程师、golang工程师_牛客网 其他语言输入输出见链接 1.输入两个数,输入数据包括多组。 代码语言:javascript 复制 whileTrue:try:a=list(map(int,input().split()))print(a[0]+a[1])except:break 代码语言:javascript 复制 w...
python3 牛客网:OJ在线编程常见输入输出练习(ACM模式),其他语言输入输出见链接1.输入两个数,输入数据包括多组。whileTrue:try:a=list(map(int,input().split()))print(a[0]+a[1])except:breakwhileTrue:try:
#include<iostream> using namespace std; int main() { int t; int a,b; cin>>t; for(int i = 0; i < t; i++) { cin>>a>>b; cout<<a+b<<endl; } return 0; }#include<iostream> using namespace std; int main() { int a,b; while(cin>>a>>b) { if(a==0&&b==0) { ...
import java.util.Scanner; /** * 输入包括两个正整数a,b(1 <= a, b <= 10^9),输入数据包括多组 */ public class Main{ public static void main(String args[]){ Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); while(sc.hasNext()&&(a!=0)&&...
1. A+B(1) import sys for line in sys.stdin: a = line.split() print(int(a[0]) + int(a[1])) 2. A+B(2) import sys g = int(input()) for i in r_牛客网_牛客在手,offer不愁
输入包括两个正整数a,b(1 <= a, b <= 10^9),输入数据包括多组。 1 5 10 20 输出a+b的结果 6 30 #include<iostream>using namespace std;intmain(){inta,b;while(cin>>a>>b){cout<<a+b<<endl;}return0;} A+B(2) 输入第一行包括一个数据组数t(1 <= t <= 100) ...
OJ在线编程常见输入输出练习场OJ在线编程常见输入输出练习场OJ在线编程常见输入输出练习场 A+B(1)A+B(1)A+B(1) 一个while循环搞定一个while循环搞定一个while循环搞定 #include <bits/stdc++.h> using namespace std; int a,b; int main() { while(cin>>a>>b&&a!=0&&b!=0) { cout<<a+b<<end...