野声

Hey, 野声!

谁有天大力气可以拎着自己飞呀
twitter
github

ACM 輸入輸出語句

一些自己用的輸入輸出語句。

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){
}
載入中......
此文章數據所有權由區塊鏈加密技術和智能合約保障僅歸創作者所有。