#4: Java


ygktxzah (ygktxzah)

學校 : 不指定學校
編號 : 448
來源 : [42.72.76.158]
最後登入時間 :
2022-12-21 13:29:09
a001. 哈囉 -- Brian Kernighan | From: [42.72.76.158] | 發表日期 : 2022-12-21 13:33

import java.util.Scanner;
 
public class a001 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String s = sc.nextLine();
        System.out.print("hello, " + s);
        sc.close();
    }
}
 
 
ZeroJudge Forum