样例输出
**********************
* My first C program *
**********************
|
1 2 3 4 5 6 7 8 9 10 11 |
package adv210; public class Main { public static void main(String[] args) { System.out.println("**********************"); System.out.println("* My first C program *"); System.out.println("**********************"); } } |