黑马程序员技术交流社区
标题:
记录——for循环练习三角形
[打印本页]
作者:
迷路的小孩儿
时间:
2015-7-12 15:17
标题:
记录——for循环练习三角形
/*
需求:在控制台输如下的形状
----*
---**
--***
-****
*****
*/
class FunctionDemo {
public static void main(String[] args) {
for (int x =0;x <4;x++) {
for (int y=x;y<4;y++) {
System.out.print("-");
}
for (int m=0;m<=x;m++){
System.out.print("*");
}
System.out.println();
}
for (int w=0;w<5;w++)
System.out.print("*");
}
}
复制代码
作者:
迷路的小孩儿
时间:
2015-7-12 15:46
/*
需求:在控制台输如下的形状
* * * * *
* * * *
* * *
* *
*
*/
class FunctionDemo {
public static void main(String[] args) {
for(int x=0;x<5;x++) {
for (int y=0;y<x;y++) {
System.out.print(" ");
}
for (int z=x;z<5;z++) {
System.out.print("* ");
}
System.out.println();
}
}
}
复制代码
作者:
迷路的小孩儿
时间:
2015-7-12 15:59
/*
需求:在控制台输如下的形状
----*
---* *
--* * *
-* * * *
* * * * *
*/
class FunctionDemo {
public static void main(String[] args) {
for(int x=0;x<5;x++) {
for (int y =x;y<4;y++) {
System.out.print("-");
}
for (int z=0;z<=x;z++){
System.out.print("* ");
}
System.out.println();
}
}
}
复制代码
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2