8 contoh program looping membuat segitiga dengan angka

Membuat Segitiga looping dengan Angka


membuat segitiga merupakan salah satu chalange yang umum di lakukan ketika kita sedang belajar pemprograman, berikut beberrapa contoh program looping java emnggunakan for() dalam membuat segitiga.

pada tutorial kali ini saya akan membagikan beberapa tutorial belajar membuat segitiga siku angka dengan for() looping;

code pertama for() looping pertama

public class Main {
    public static void main(String[] args) {
   // write your code here
        for (int i = 1; i <= 6; i++){
            for (int j = 1; j <= i; j++){
                System.out.print(j+" ");
            }
            System.out.println();
        }
    }
}

berikut hasil programnya


code for() looping kedua

    public static void main(String[] args) {
   // write your code here
        for (int i = 6; i >= 1; i--){
            for (int j = 1; j<= i; j++){
                System.out.print(j+" ");
            }
            System.out.println();
        }
    }
}


code for() looping ketiga

   public static void main(String[] args) {
// write your code here
       int x = 6;
       for (int i = 1; i <= 6; i++){
           for (int j = x - 1; j >= 1; j--){
               System.out.print(" ");
           }
           for(int d = i; d > 0; d--){
               System.out.print(d);
           }
           System.out.println();
           x -= 1;
       }
   }


code for() looping ke empat

   public static void main(String[] args) {
// write your code here
       int x = 1;
       for (int i = 7; i > 1; i--) {
           for (int s = i; s < 7; s++) {
               System.out.print(" ");
           }
           for (int d = 7 - x; d > 0; d--) {
               System.out.print(d);
           }
           System.out.println();
           x += 1;
       }
   }


code for() looping ke Lima

   public static void main(String[] args) {
// write your code here
       int x = 7;
       for (int i = 7; i > 1; i--) {
           for (int k = i; k < 7; k++){
               System.out.print(" ");
           }
           for (int c = 1; c < x; c++){
               System.out.print(c);
           }
           System.out.println();
           x -= 1;
       }
   }


code for() looping ke enam

   public static void main(String[] args) {
// write your code here
       int o = 1;
       for (int d = 6; d >= 1; d--){
           for (int j = d - 1; j >= 1; j--){
               System.out.print(" ");
           }
           for (int l = 1; l <= o; l++){
               System.out.print(l);
           }
           System.out.println();
           o += 1;
       }
   }

code for() looping ke tujuh

public class Main {
    public static void main(String[] args) {
   // write your code here
        int j = 1;
        for(int k = 1; k < 5; k++){
            for (int d = 1; d <= k; d++ ){
                System.out.print(j+ " ");
                j += 1;
            }
            System.out.println();
        }
    }
}

code for() looping ke delapan

public class Main {
    public static void main(String[] args) {
   // write your code here
        int j = 1;
        for(int k = 5; k >= 1; k--){
            for (int d = 1; d < k; d++ ){
                System.out.print(j+ " ");
                j += 1;
            }
            System.out.println();
        }
    }
}



semoga dari ke 8 contoh program loping membuat segitiga dengan java bermanfaat untuk menambah variasi gaya algoritma dari temen-temen semua.

trimakasih sudah membaca.
Share:

10 comments:

  1. kalo mau buat kek gini gimana ya ?
    1
    * *
    3 6 9
    * * * *
    5 10 15 20 25

    ReplyDelete
  2. kalau buat seperti ini gmana kk,
    9
    81
    727
    6363
    54545

    ReplyDelete
  3. Klu spt ini gmn???
    01234543210
    012343210
    0123210
    01210
    010
    0

    ReplyDelete

  4. 1 | 1
    2 1 | 1 2
    3 2 1 | 1 2 3
    4 3 2 1 | 1 2 3 4
    5 4 3 2 1 | 1 2 3 4 5
    6 5 4 3 2 1 | 1 2 3 4 5 6
    7 6 5 4 3 2 1 | 1 2 3 4 5 6 7
    8 7 6 5 4 3 2 1 | 1 2 3 4 5 6 7 8
    9 8 7 6 5 4 3 2 1 | 1 2 3 4 5 6 7 8 9

    ReplyDelete
  5. Kalo kaya gni
    1
    212
    32123
    4321234
    543212345

    ReplyDelete
  6. kalau input dan ouput nya menggunakan nama bagaimana ya bang, boleh dikasih contoh

    ReplyDelete
  7. Klo kaya gini gimana ya kak

    *
    *#
    *#%
    *#%*
    *#%*#
    *#%*#%

    ReplyDelete
  8. klo kaya gini gmna ya

    *
    ***
    *****
    *******
    *******
    ******
    *****
    ****
    ***
    **
    *

    ReplyDelete
  9. Yang kayak gini buat dong
    1
    2 2
    3 3 3
    4 4 4 4
    5 5 5 5 5

    ReplyDelete

Popular Posts

Contact Us

Name

Email *

Message *

Labels

Recent Posts

Unordered List

  • Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
  • Aliquam tincidunt mauris eu risus.
  • Vestibulum auctor dapibus neque.

Sample Text

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

Pages

Theme Support

Need our help to upload or customize this blogger template? Contact me with details about the theme customization you need.