Java小程序之输出星号

Posted 一步小僧

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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小程序之输出星号的主要内容,如果未能解决你的问题,请参考以下文章

用js写输出星号直角三角形的代码

微信小程序第七天WXML语法之模板用法

微信小程序第七天WXML语法之模板用法

微信小程序代码片段

java小程序之单词逆序

微信小程序代码片段分享