其中错误千千万哦, 小牛们可以找出多少啊?
1>
***
***
****
*****
目标:使用for 循环打印处以上符号
class ForForTest1
{
public static void main(String[]args)
{
for(ing x=1;x<=5;x++);
{
for(int y=1;y<=x;y++);
}
System.out.print("x="+x);
}
System.out.println();
}
疑问点:当X<=时 ,y是否也是正常<= ?
2>
*****
****
***
**
*
目标:使用for 循环打印处以上符号
方法1:
class ForForTest2
{
public static void main(String[]args)
{
for(ing x=0;x<5;x++);
{
for(int y=x;y<5;y++);
}
System.out.print("x="+x);
}
System.out.println();
方法2:
class ForForTest3
{
public static void main(String[]args)
{
for(ing x=0;x<5;x++);
{
for(int y=0;y<5;y--);
}
System.out.print("x="+x);
}
System.out.println();
}
3>九九乘法表
1*1=1
1*2=2 以此类推,九九乘法
class ForForTest4
{
public static void main(String[]args)
{
for(ing x=1;x<=9;x++);
{
for(int y=1;y<=x;y++);
}
System.out.print(x+“*”+y“=”x*y"\t");
}
System.out.println();
}
4>
1
12
123
1234
12345
class ForForTest5
{
public static void main(String[]args)
{
for(ing x=0;x<5;x++);
{
for(int y=1;y<=5;y++);
}
System.out.print(y);
}
System.out.println();
}
6>1-10的求和
0+1=1
1+2=3
规律如此
class ForForTest6
{
public static void main(String[]args)
{ int sum=0 //定义不断变化的和
for(ing x=0;x<=10;x++);
{
sum+=sum;
System.out.printlny(“sum=”+sum);
}
}
}
7>1-100 中7的个数
class ForForTest7
{
public static void main(String[]args)
{
int count=0;
for(ing x=1;x<=100;x++);
{
if(x%7=0)
{
System.out.println("count="+count);
}
}
}
}
8>
* * * * *
* * * *
* * *
* *
*
目标:使用for 循环打印处以上符号
class ForForTest8
{
public static void main(String[]args)
{
for(ing x=1;x<=5;x++);
{
for(int y=x;y<x;y++); // 打出空格
{
System.out.print(“ ”)
}
for(int z=x;z<=5;z++)
{
System.out.print(“* ”)//打*
}
System.out.println();
}
}
}
|
|