for循环输出菱形

Posted

tags:

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

package com.hanqi;

public class lingxing {

    public static void main(String[] args) {

        for(int m=1;m<=10;m++)
        {
            //输出空格
            for(int n=9;n>=m;n-- )
              {
                System.out.print(" ");
              }    
            
            //输出*
            for(int n=1;n<=m;n++)
                {
                  System.out.print("*");
                }
            
            for(int n=1;n<m;n++)
                 {
                    System.out.print("*");
                 }
                System.out.println(" ");
        }
                
        for(int m=1;m<=9;m++)
        {
            //输出空格
            for(int n=1;n<=m;n++ )
              {
                System.out.print(" ");
              }    
            
            //输出*
            for(int n=9;n>=m;n--)
              {
                System.out.print("*");
              }
            for(int n=9;n>m;n--)
              {
                System.out.print("*");
              }
            
            System.out.println(" ");
        }
    
    
    }

}

技术分享

以上是关于for循环输出菱形的主要内容,如果未能解决你的问题,请参考以下文章

用for循环怎么输出数字菱形啊

用for循环怎么输出数字菱形啊

用java打印菱形。

for循环输出菱形

趣题用for循环输出菱形

用JAVA 的for循环输出 菱形