#9612: java解答


26021366 (聰聰)

學校 : 新北市私立時雨高級中學
編號 : 46198
來源 : [163.20.177.14]
最後登入時間 :
2015-01-27 21:19:03
a001. 哈囉 -- Brian Kernighan | From: [163.20.177.14] | 發表日期 : 2015-01-26 22:01

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