加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Demo3.java 701 Bytes
一键复制 编辑 原始数据 按行查看 历史
java59_凡波涛 提交于 2019-03-22 08:23 . 请老师检查作业
package 作业3;
import java.util.Scanner;
public class Demo3 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int num;
System.out.println("输入层高:");
while (!sc.hasNextInt()) {
String st = sc.next();
System.out.println("输入的数是" + st + ",请输入正整数:");
}
num = sc.nextInt();
// 外层控制行
for (int i = 0; i < num; i++) {
// 内层控制列
for (int j = 0; j < num; j++) {
System.out.print("*");
}
System.out.println();
}
for (int i = 0; i < num; i++) {
for (int j = 0; j <= 2 * i; j++) {
System.out.print("*");
}
System.out.println();
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化