17 กรกฎาคม 2554

โจทย์ พร้อมตัวอยางเฉลยโปรแกรม พิรามิด ทั้ง 36 ข้อ ^ ^ (ชุดที่ 3)

ข้อที่ 17.

19191919
28282828
37373737
46464646
55555555

public class SuperLoop17 {
    public static void main(String den[]){
        int z=5;
        for(int i=1;i<=z;i++){
            for(int j=1;j<=z-1;j++){
                System.out.print(i+""+(z*2-i));
            }  
            System.out.println();
        }
    }
}
ข้อที่ 18.

1*1*****9
2**2****8
3***3***7
4****4**6
5*****5*5

public class SuperLoop18 {
    public static void main(String den[]){
        int z=5;
        for(int i=1;i<=z;i++){
            System.out.print(i);
            for(int j=1;j<=i;j++){
                System.out.print("*");
            }
            System.out.print(i);
            for(int j=z;j>=i;j--){
                System.out.print("*");
            }
            System.out.println(z*2-i);
        }
    }
}
ข้อที่ 19.

1*********5
2******** 4
3*******  3
4******   2
5*****    1

public class SuperLoop19 {
    public static void main(String den[]){
        int z=5;
        for(int i=1;i<=z;i++){
            System.out.print(i);
            for(int j=i;j<=(z*2-1);j++){
                System.out.print("*");
            }
            for(int j=1;j<i;j++){
                System.out.print(" ");
            }
            System.out.println(z-i+1);
        }
    }
}
ข้อที่ 20.

1*1
22**22
333***333
4444****4444
55555*****55555

public class SuperLoop20 {
    public static void main(String den[]){
        int z=5;
        for(int i=1;i<=z;i++){
            for(int j=1;j<=i;j++){
                System.out.print(i);
            }
            for(int j=1;j<=i;j++){
                System.out.print("*");
            }
            for(int j=1;j<=i;j++){
                System.out.print(i);
            }
            System.out.println();
        }
    }
}
ข้อที่ 21.

*111111111*
* 2222222 *
*  33333  *
*   444   *
*    5    *
public class SuperLoop22 {
    public static void main(String den[]){
        int z=5;
        for(int i=1;i<=z;i++){
            System.out.print("*");
            for(int j=1;j<i;j++){
                System.out.print(" ");
            }
            for(int j=i;j<=z*2-i;j++){
                System.out.print(i);
            }
            for(int j=i;j>1;j--){
                System.out.print(" ");
            }
            System.out.println("*");
        }
    }
}
 ข้อที่ 22.

*******1*7
******2**6
*****3***5
****4****4
***5*****3

public class SuperLoop21 {
    public static void main(String den[]){
        int z=5;
        for(int i=1;i<=z;i++){
            for(int j=0;j<=((z*2)-(i+3));j++){
                System.out.print("*");
            }
            System.out.print(i);
            for(int j=i;j>=1;j--){
                System.out.print("*");
            }
            System.out.println((z*2)-(i+2));
        }
    }
}
ข้อที่ 23.

1******1
2***** 2
3****  3
4***   4
5**    5

public class SuperLoop23 {
    public static void main(String den[]){
        int z=5;
        for(int i=1;i<=z;i++){
            System.out.print(i);
            for(int j=i;j<=z+1;j++){
                System.out.print("*");
            }
            for(int j=1;j<i;j++){
                System.out.print(" ");
            }
            System.out.println(i);
        }
    }
}
ข้อที่ 24.

1*1111111111
2***22222222
3*****333333
4*******4444
5*********55

public class SuperLoop24 {
    public static void main(String den[]){
        int z=5;
        for(int i=1;i<=z;i++){
            System.out.print(i);
            for(int j=1;j<=i*2-1;j++){
                System.out.print("*");
            }
            for(int j=i;j<=z*2-i;j++){
                System.out.print(i);
            }
            System.out.println();
        }
    }
}

ไม่มีความคิดเห็น:

แสดงความคิดเห็น