代码
提交代码
public class ForLoop1 { public static void main(String[] args) { for (int i = 1; i <= 5; i ++) { System.out.println("慕课网真棒"); } } }
运行结果