java 打印菱形星

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 打印菱形星相关的知识,希望对你有一定的参考价值。

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package BASICJAVA;

import java.util.Scanner;

/**
 *
 * @author ABIR
 */
public class Rhombus_Star {
    public static void main(String[]args){
        Scanner abir=new Scanner(System.in);
        System.out.println("Sample Input");
        int x=abir.nextInt();
        System.out.println("Sample output");
        int c=0;
        while(c<x){
          int d=x-1;
          while(d>c){
           System.out.print(" ");
           d--;
          }
          int e=0;
          while(e<=c+c){
            System.out.print("*");
            e++;
          }
          System.out.println();
          c++;
        }
        int f=x-2;
        while(f>=0){
          int k=f;
          while(k<x-1){
            System.out.print(" ");
            k++;
          }
          int l=0;
          while(l<=f+f){
            System.out.print("*");
            l++;
          }
          f--;
          System.out.println();
        }
        System.out.println("=======================================================");
      }
}

以上是关于java 打印菱形星的主要内容,如果未能解决你的问题,请参考以下文章

打印星星(倒三角,正三角,等腰三角,直角三角,菱形,空心菱形)

用java打印菱形。

编写java程序,应用for循环打印菱形。

java打印一个菱形

JAVA的for循环打印菱形,谁能给讲一讲。

java方面 是个打印菱形的程序,本人是新手不太理解,求高手注释,详细解释一下,谢了!