一些自己用的輸入輸出語句。
Python 輸入#
輸入一行由空格切分的值#
# py2
w = raw_input().split()
# py3
w = input().split()
輸入整形變量#
# py2
w = map(int,raw_input().split())
# py3
w = map(int,input().split())
JAVA 中在 OJ 上怎麼實現多組輸入#
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
while(sc.hasNext()) {
double a = sc.nextDouble();
// DO
}
}
}
C 多組輸入#
int a, b;
while(scanf("%d%d", &a, &b) != EOF)
{
}
C++ 中在 OJ 上怎麼實現多組輸入#
while(cin >> a >> b){
}