public class Xun {
public static void main(String[] args) {
for (int i = 1; i <= 3; i++) {
for (int j = 1; j <= i; j++) {
System.out.println("*");
}
System.out.println();
}
}
}
不会无限循环,如果在网页上提交出错的话,你可以检查下中英文字符,或者在本地IDE中编译运行。
不会无限循环呀