码迷,mamicode.com
首页 > 编程语言 > 详细

java学习二输出图形示例

时间:2018-03-13 15:45:42      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:end   extend   rate   ring   margin   出图   ted   nal   generate   

package basicProject;

 

public class Tuxing extends Basic {

 

public void picture1() {

final int COUNT = 10;

int row = 5;

for (int i=1; i<=row; i++) {

for(int k=0;k<i;k++) {

if (k==0) {

System.out.print("");

}else {

        System.out.print(" ");

}

}

for(int j=0;j<=COUNT;j++) {

if (j!=COUNT) {

System.out.print("*");

}else {

System.out.print("*"+"\n");

}

}

}

}

public void picture2() {

int count = 10;

int row = 10;

for (int i=0;i<row;i++) {

for(int k=row;k>=i;k--) {

if(k==row) {

System.out.print("");

}else {

System.out.print("   ");

}

}

System.out.print("**********"+"\n");

}

}

public void picture3() {

int row = 10;

for(int i=1;i<=row;i++) {

if(i<=row/2+1) {

for(int j=1;j<=i;j++) {

System.out.print("*");

}

System.out.println();

}

if(i>row/2+1) {

for(int k=i;k<=row;k++) {

System.out.print("*");

}

System.out.println();

}

 

}

 

}

public static void main(String[] args) {

// TODO Auto-generated method stub

        Tuxing picture = new  Tuxing();

        picture.picture3();

        picture.picture1();

        picture.picture2();

}

 

}

java学习二输出图形示例

标签:end   extend   rate   ring   margin   出图   ted   nal   generate   

原文地址:https://www.cnblogs.com/EmilyGarden/p/8555276.html

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