annasgtg

piramidAngka

Feb 12th, 2018
535
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.29 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<conio.h>
  3. #include<iostream>
  4.  
  5. using namespace std;
  6. int main()
  7. {
  8.     int i, j, num=1, k;
  9.     cout<<"Masukkan Jumlah Baris: ";
  10.     cin>>k;
  11.     for(i=0; i<k; i++)
  12.     {
  13.         num=1;
  14.         for(j=0; j<=i; j++)
  15.         {
  16.             printf("%d ",num);
  17.             num++;
  18.         }
  19.         printf("\n");
  20.     }
  21.     getch();
  22. }
Advertisement
Add Comment
Please, Sign In to add comment