Advertisement
khisby

soal5_5soal

Oct 23rd, 2017
82
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.    int n;
  8.    char huruf='a';
  9.    cout << "Masukkan angka";
  10.    cin >> n;
  11.    for(int j=1;j<=n;j++){
  12.       for(int i=1;i<j;i++){
  13.         cout<<huruf;
  14.         huruf++;
  15.       }
  16.       cout<<"\n";
  17.    }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement