import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); while(sc.hasNext()){ int n=sc.nextInt(); if(n==0) break; for (int i = 0; i <=n*2; i++) { if(i==n) { for (int j =0; j <=n; j++) System.out.print("*"); System.out.println("*"); } else{ System.out.print("*"); for (int j = 1; j <=n; j++) System.out.print(" "); System.out.println("*"); } } System.out.println(); } } }
0.0分
0 人评分
点我有惊喜!你懂得!浏览:1439 |
点我有惊喜!你懂得!浏览:1462 |
C语言程序设计教程(第三版)课后习题7.3 (C语言代码)浏览:643 |
C二级辅导-计负均正 (C语言代码)浏览:699 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:941 |
计算质因子 (C++代码)浏览:1828 |
【偶数求和】 (C语言代码)浏览:674 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:606 |
C语言训练-计算t=1+1/2+1/3+...+1/n (C语言代码)浏览:943 |
C语言考试练习题_保留字母 (C语言代码)浏览:743 |