Advertisement
khisby

Soal1_5soal

Oct 23rd, 2017
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. // Khisby Al Ghofari, 06.2017.1.06852, Kelas B
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8.     int angka;
  9.     cout << "Masukkan angka";
  10.     cin >> angka;
  11.  
  12.     for(int i=1;i<=angka;i++){
  13.         for(int j=angka-i;j>=0;j--){
  14.             cout << "X";
  15.         }
  16.         cout << "\n";
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement