黑马程序员技术交流社区
标题:
for循环打印图案和乘法表
[打印本页]
作者:
史世锋
时间:
2015-9-7 22:20
标题:
for循环打印图案和乘法表
class Fortest2
{
public static void main(String[] args)
{
/*
打印图案:
*****
****
***
**
*
*/
//int z=5;
for(int x=5;x>0;x--)
{
for(int y=1;y<=x;y++)
{
System.out.print("*");
}
System.out.print('\n');
// z--;
}
System.out.println("-------------------");
/*
打印图案:
*
**
***
****
*****
*/
//z=1;
for(int x=1;x<=5;x++)
{
for(int y=1;y<=x;y++)
{
System.out.print("*");
}
// z++;
System.out.print('\n');
}
System.out.println("-------------------");
/*
打印:
1
12
123
1234
12345
*/
for(int x=1;x<=5;x++)
{
for(int y=1;y<=x;y++)
{
System.out.print(y);
}
System.out.println();
}
System.out.println("-------------------");
/*
打印:
1*1=1
1*2=2 2*2=4
1*3=3 2*3=6 3*3=9
*/
for(int x=1;x<=9;x++)
{
for(int y=1;y<=x;y++)
{
System.out.print(y+"*"+x+"="+(x*y)+"\t");
}
System.out.println();
}
}
}
作者:
Andy丶JF
时间:
2015-9-7 22:22
乘法表容易,各种图形就不会了
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2