Advertisement
khisby

soal3_5soal

Oct 23rd, 2017
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.44 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.    cout << "Masukkan angka";
  9.    cin >> n;
  10.    for(int j=1;j<=n;j++){
  11.         int angka=1;
  12.         char huruf='a';
  13.       for(int i=1;i<j;i++){
  14.         if(i%2!=0){
  15.             cout<<angka;
  16.                 angka++;
  17.         }else{
  18.             cout<<huruf;
  19.                 huruf++;
  20.         }
  21.       }
  22.       cout<<"\n";
  23.    }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement