A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© X.MIKO 中级黑马   /  2015-7-7 23:30  /  268 人查看  /  6 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

写出一个用for语句的镂空的等腰三角形

6 个回复

倒序浏览
class VarDemo11 {          public static void main(String[] args) {              for(int x=1;x<=5;x++)                          {                                  for(int y=1;y<x;y++){                                  System.out.print(" ");                          }                          for(int z=x;z<=5;z++){                          System.out.print("* ");                          }                                         System.out.println( );}  }      }
回复 使用道具 举报
class VarDemo11 {          public static void main(String[] args) {              for(int x=1;x<=5;x++)                          {                                  for(int y=1;y<x;y++){                                  System.out.print(" ");                          }                          for(int z=x;z<=5;z++){                          System.out.print("* ");                          }                                         System.out.println( );}  }      }
回复 使用道具 举报
我这是正解
class ForForDemo
{
        public static void main(String[] args)
        {
               
                for (int x = 0;x<5;x++ )
                {
                        for (int y = x;y<5 ;y++ )
                        {
                                System.out.print(" ");
                        }
                        for (int z = 0; z<x+1;z++ )
                        {
                                System.out.print("* ");
                        }
                        System.out.println();
                }
        }
}
回复 使用道具 举报
  1. int y = (x+1)/2;
  2. int count1 = (x+1)/2;
  3. int count2 = (x+1)/2;
  4. for(int i=0;i<y;i++){
  5.         for(int j=1;j<=x;j++){
  6.                 if(i==y-1)
  7.                         System.out.print("*");
  8.                
  9.                 else if((i!=y+1) && (j == count1 || j == count2))
  10.                         System.out.print("*");
  11.                
  12.                 else
  13.                         System.out.print(" ");                                       
  14.         }

  15.         count1++;
  16.         count2--;

  17.         System.out.println();
  18. }
复制代码
回复 使用道具 举报
  1. static void DengYaoSanJiao(int x){
  2.         int y = (x+1)/2;
  3.         int count1 = (x+1)/2;
  4.         int count2 = (x+1)/2;
  5.         for(int i=0;i<y;i++){
  6.                 for(int j=1;j<=x;j++){
  7.                         if(i==y-1)
  8.                                 System.out.print("*");
  9.                        
  10.                         else if((i!=y+1) && (j == count1 || j == count2))
  11.                                 System.out.print("*");
  12.                        
  13.                         else
  14.                                 System.out.print(" ");                                       
  15.                 }

  16.                 count1++;
  17.                 count2--;

  18.                 System.out.println();
  19.         }
  20. }
复制代码
回复 使用道具 举报
/*
    *
   * *
  * * *
* * * *
* * * * *
*/

  public static void main(String[] args)
        {
                for (int i=0; i<5; i++)
                {
                        for (int j=i; j<4 ;j++)
                        {
                                System.out.print(" ");
                        }
                        for (int y=0; y<=i; y++)
                        {
                                System.out.print("* ");
                        }
                        System.out.println();
                }       
        }
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马