输出在各个开发语言中起着至关重要的作用,方便编写代码时进行调试,在java中使用 System.out.println 进行输出
1 public class Main { 2 3 public static void main(String[] args) { 4 5 // 使用System.out.println进行输出 6 System.out.println("Hello World"); 7 8 } 9 }
posted on 2018-11-05 08:05 奋斗中的码农 阅读(134) 评论(0) 编辑 收藏 举报