求java入门例程10个(最经典的)

来源:百度知道 编辑:UC知道 时间:2024/05/28 16:41:05
请一并给出源程序

public class HelloWorld
{
pulic static void main(String[] args)
{
System.out.println("HelloWorld");
}
}

我收藏的这个还是给你吧!真有点舍不得
http://www.hongen.com/pc/homepage/applet/index.htm

class Saluton {
public static void main(String[] arguments){
String greeting="Saluton mondo!";
System.out.println(greeting);
}
}

没有什么比HelloWorld更经典的了。