package step1; public class ForPractice1 { public static void test() { /*****start*****/ int x,i; for(int x=0;x<=10;x++) { for(int i=0;i<=10;i++) { System.out.print("*"); } System.out.println("*"); } /*****end*****/ } }有什么错误
时间: 2023-05-11 11:05:07 浏览: 73
测试错误说明样例1
在第一个for循环中,x的更新条件应该是x++而不是x<=10,第二个for循环中,i的更新条件应该是i++而不是i<=10。正确的代码如下:
package step1;
public class ForPractice1 {
public static void test() {
/*****start*****/
for(int x=0;x<=10;x++) {
for(int i=0;i<=10;i++) {
System.out.print("*");
}
System.out.println("*");
}
/*****end*****/
}
}
阅读全文