黑马程序员技术交流社区
标题:
输出图形
[打印本页]
作者:
Java1211张美红
时间:
2015-12-28 16:48
标题:
输出图形
class Diamond{
public static void main(String[] args) {
int x = 5;
for (int i = 1;i <= x ;i++ ) {
for (int j = 1;j < 2*x ;j++ ) {
if (i == 1) { //第一行的情况
if (j >= x && j <= 2*x-1) {
System.out.print("* ");
} else {
System.out.print(" ");
}
} else if (i == x) { //最后一行的情况
if (j <= x) {
System.out.print("* ");
} else {
System.out.print(" ");
}
} else {
if (j == x+1-i || j == 2*x-i ||j == x || j == 2*x-1+i) {
System.out.print("* ");
} else {
System.out.print(" ");
} }
}
System.out.println();
}
}
}
认真分析,你要输出的图形,根据行列来分析,具体所在的行列的内容.
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2