public class HelloWorld { public static void main(String[] args) { for(int i=1;i<=3;i++){ for(int j=1;j<=8;j++){ System.out.println("*"); } System.out.println(""); } }}为什么我这个代码打印出来不是矩形而是竖下来的一列*
添加回答
举报
0/150
提交
取消