鲜花店长沙:求java入门例程10个(最经典的)

来源:百度文库 编辑:神马品牌网 时间:2024/05/03 05:48:23
请一并给出源程序

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更经典的了。