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循环输出菱形的主要内容,如果未能解决你的问题,请参考以下文章