代码:
public class helloworld{
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();
}
}
}
预计结果是
*
**
***
可是实际结果自动换行了
*
*
*
*
*
*
求帮忙解决
添加回答
举报
0/150
提交
取消