题目都相当简单没啥说的直接放代码就行了...

 

3.1

 1 package ex0301;
 2 //[3.1]使用“简短的”和正常的打印语句来写一个程序
 3 
 4 import static java.lang.System.out;
 5 public class Abbreviate 
 6 {
 7     public static void main(String[] args)
 8     {
 9         System.out.println("Hello, world! [complete]");
10         out.println("Hello, world! [abbreviate]");
11     }
12 }
3.1

相关文章:

  • 2021-08-17
  • 2021-04-21
  • 2022-02-13
  • 2022-12-23
  • 2022-12-23
  • 2021-09-22
  • 2022-12-23
  • 2022-02-12
猜你喜欢
  • 2021-08-03
  • 2021-12-15
  • 2022-01-03
  • 2021-06-14
  • 2021-10-23
  • 2021-12-02
相关资源
相似解决方案