Advertisement
Guest User

tugas

a guest
Oct 23rd, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.40 KB | None | 0 0
  1. #include<iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int n,j,i,angka;
  8.     n=10;
  9.     j=1;
  10.     i=1;
  11.     char huruf;
  12.  
  13.     for (j<=n;j++;)
  14.     {angka=1;
  15.     huruf='a';
  16.     for(i<=j;i++;)
  17.     {
  18.         if(i%2 !=0)
  19.         {
  20.             cout<<angka;
  21.             angka++;
  22.         }
  23.         else
  24.         {
  25.             cout<<huruf;
  26.             huruf++;
  27.         }
  28.     }
  29.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement