码迷,mamicode.com
首页 > 其他好文 > 详细

控制台打印菱形

时间:2016-12-13 15:36:06      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:pac   ***   auto   public   tin   port   static   system   package   

package com;
import java.util.*;
public class Test {

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
  Scanner s = new Scanner(System.in);
  System.out.println("请输入三角形的行数:");
  int n = s.nextInt();

  for(int i = 0; i < n - 1; i++)
  {
    for(int x = i + 1; x < n; x++)
    {
      System.out.print(" ");
    }
    for(int y = 0; y < (i + 1) * 2 - 1; y++)
    {
      System.out.print("*");
    }
    System.out.println();
  }
  for(int i = 0; i < n; i++)
  {
    for(int x = 0; x < i; x++)
    {
      System.out.print(" ");
    }
    for(int y = i; y < 2 * n - i - 1; y++)
    {
      System.out.print("*");
    }
    System.out.println();
  }


  }
}
/*
*
***
*****
*******
*****
***
*



*/

控制台打印菱形

标签:pac   ***   auto   public   tin   port   static   system   package   

原文地址:http://www.cnblogs.com/wangyongxia/p/6169980.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!