黑马程序员技术交流社区
标题:
For循环练习总结[黑马程序员]
[打印本页]
作者:
mandoooo
时间:
2015-10-10 00:50
标题:
For循环练习总结[黑马程序员]
/*
one
*****
****
***
**
*
two
*
**
***
****
*****
three
----*
---* *
--* * *
-* * * *
* * * * *
four
1*1=1
2*1=2 2*2=4
3*1=3 3*2=6 3*3=9
*/
class XingXing
{
public static void main(String[] args)
{
one();
System.out.println();
two();
System.out.println();
three();
System.out.println();
four();
}
public static void one()
{
for(int x=0;x<5;x++)
{
for(int y=0;y<5-x;y++)
{
System.out.print("*");
}
System.out.println();
}
}
public static void two()
{
for(int x=0;x<5;x++)
{
for(int y=0;y<=x;y++)
{
System.out.print("*");
}
System.out.println();
}
}
public static void three(){
for(int x=0;x<5;x++)
{
for(int y=0;y<4-x;y++)
{
System.out.print("-");
}
for(int z=0;z<=x;z++)
{
System.out.print("*"+" ");
}
System.out.println();
}
}
public static void four(){
for(int x=1;x<=9;x++)
{
for(int y=1;y<=x;y++)
{
System.out.print(x+"*"+y+"="+x*y+"\t");
}
System.out.println();
}
}
}
复制代码
这是毕老师视频里的练习题哦~
作者:
Rzzz
时间:
2015-10-10 02:02
基础练习 夯实这些基础的语法就行了
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2