首页 > 代码库 > Java小程序之输出星号
Java小程序之输出星号
题目:打印出如下图案(菱形)
*
***
******
********
******
***
*
编程工具使用eclipse
代码如下:
package test; public class starsList { public int totaLines = 0; // 最大行数 public static void main(String [] args){ starsList aaa = new starsList(); aaa.setNum(17,17);// 第一个是要显示的行数。第二个是总行数 } // 单行星号打印(空格和星号) public void prints(int num,int totals){ String string = ""; int lang = totals-num>=0 ? num : num-(num-totals)*2; for(int a=0;a<lang;a++){ string +="*"; } int space = (totals-lang)/2; for(int b=0;b<space;b++){ string = " "+string; string = string+" "; } System.out.println(string); System.out.println(‘\n‘); } // 根据打印行数计算每行星号个数并调用单行打印 public void setNum(int lines,int totals2){ if(lines>totals2){ System.out.println("要显示的行数("+lines+") 大于总行数("+totals2+")"); return; } starsList bb = new starsList(); for(int c = 0;c<lines;c++){ int n = (2*c)+1; bb.prints(n,totals2); } } }
Java小程序之输出星号
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。