第1章 Java语言概述
本章读者可以学到如下实例:
- 实例001 输出“HelloWorld”
- 实例002 输出控制台传递的参数
- 实例003 输出由“*”组成的三角形
- 实例004 输出符号表情
实例001 输出“HelloWorld”
1 2 3 4 5 6 7
| package com.mingrisoft;
public class Test { public static void main(String[] args) { System.out.println("Hello World"); } }
|
实例002 输出控制台传递的参数
1 2 3 4 5 6 7 8
| package com.mingrisoft;
public class Test { public static void main(String[] args) { System.out.println(args[0]); System.out.println(args[1]); } }
|
实例003 输出由“*”组成的三角形
1 2 3 4 5 6 7 8 9 10
| package com.mingrisoft;
public class Test { public static void main(String[] args) { System.out.println(" *"); System.out.println(" ***"); System.out.println(" *****"); System.out.println("*******"); } }
|
实例004 输出符号表情
1 2 3 4 5 6 7 8 9 10 11
| package com.mingrisoft;
public class Test { public static void main(String[] args) { System.out.println(" ╭︿︿︿╮ "); System.out.println(" {/ o o /}"); System.out.println(" ( (oo) )"); System.out.println(" ︶ ︶︶"); }
}
|