女生内急憋不住视频:求java入门例程10个(最经典的)

来源:百度文库 编辑:高考问答 时间:2024/05/10 04:38:47
请一并给出源程序

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