牛客网中python3的标准输入输出:
注意其中input输入的数据类型是str字符串类型,使用之前需要进行转换。
arr=map(int,input().split())在python3中
arr=list(map(int,input().split()))
x=input()
y=input()
print(arr)
输出:
3 4 5 6
1
2
[3, 4, 5, 6]
1
2
牛客网中C++的标准输入输出:
#include<iostream>
using namespace std;
int main(){
int m,n,k;
cin>>m>>n;
cin>>k;
cout<<m<<endl;
cout<<n<<endl;
cout<<k<<endl;
return 1;
}
输出:
赛码网中python2输入输出:
x=raw_input()
while x:
x=x-1
z=[int(i) for i in raw_input().split()]