#8505: AC:JAVA


beastgame (多多)

學校 : 不指定學校
編號 : 37930
來源 : [122.116.139.112]
最後登入時間 :
2014-01-04 23:17:15
a001. 哈囉 -- Brian Kernighan | From: [122.116.139.112] | 發表日期 : 2014-01-04 19:44

import java.util.Scanner;

public class JAVA {

    public static void main(String[] args) {
        Scanner cin = new Scanner(System.in);
        String s;
        while (cin.hasNext()) {
            s = cin.nextLine();
            System.out.println("hello, " + s);
        }
    }
}
 
ZeroJudge Forum