1. 程式人生 > >用 java語言輸出hello world

用 java語言輸出hello world

public class helloworld    //檔名為helloworld
{
public static void main(String[]args)
{
System.out.println("hello world");//輸出結果
System.out.println("hello 位元“);
System.out.println("hello friend”);
}
}