java编程思想练习题-第2章练习2

题目:编写程序,输出"Hello,World"

代码:

class test{

	public static void main(String []args){
		System.out.println("Hello,World");
		
	}
	
}

 结果:

Hello,World

 

结论:注意main方法签名的书写

猜你喜欢

转载自buptchj.iteye.com/blog/2247267
今日推荐