package lesson1;
public class StarProgram {
public static void main(String[] args) {
// TODO Auto-generated method stub
for(int i=1;i<=3;i++){
for(int j=1;j<=3;j++)
{
System.out.println("*");
}System.out.println();
}
}
}
对于这个程序,我正在退出
*
*
*
*
*
*
*
*
*
但我应该做对了吗?:
* * *
* * *
* * *
我的计划有什么问题?
答案 0 :(得分:0)
System.out.print
和System.out.println
之间阅读difference
更改
for(int j=1;j<=3;j++)
{
System.out.print("*");
}System.out.println();
而不是
for(int j=1;j<=3;j++)
{
System.out.println("*");
}System.out.println();