萌新求教
* *** **
*** ***
********
**********
跪求大佬帮我解一下这个形状怎么弄出来的。
第一个中间得有8个空格
第二个6个空格
第三个4个空格
第四个2个空格
public class program {
public static void main(String[] args) {
System.out.println("* *\n\n** **\n\n*** ***\n\n********\n\n**********");
}
} 写了一个最智障的:
public class test
{
public static void main(String[] args)
{
int k = 8;
for (int i = 1; i <= 5; i++)
{
for (int j = 0; j < i; j++)
System.out.print('*');
for (int x = 0; x < k; x++)
System.out.print(' ');
for (int j = 0; j < i; j++)
System.out.print('*');
k -= 2;
System.out.println();
}
}
}
lz一定能看懂 qiuyouzhi 发表于 2020-5-18 15:43
写了一个最智障的:
lz一定能看懂
看楼上,是不是更易懂呢{:10_256:} 永恒的蓝色梦想 发表于 2020-5-18 15:43
{:10_250:}你这个有点暴力 永恒的蓝色梦想 发表于 2020-5-18 15:43
大佬太暴力了,用不起{:5_97:} qiuyouzhi 发表于 2020-5-18 15:43
写了一个最智障的:
lz一定能看懂
感谢大佬的帮助{:5_106:} xumin79 发表于 2020-5-18 15:55
感谢大佬的帮助
{:10_256:}
页:
[1]