khisby

soal4_5soal

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