document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <iostream.h>
  2. #include <conio.h>
  3.  
  4. main(){
  5.  
  6. int i,j,n,spasi;
  7.  
  8. cout<<"Masukkan Jumlah Baris: "; cin>>n;
  9. cout<<endl;
  10.     for(i=n; i>=1; i--){
  11.    spasi=n-i;
  12.         for(j=1; j<=spasi; j++)
  13.          cout<<" ";
  14.             for(j=1; j<=i; j++)
  15.             cout<<"* ";
  16.             cout<<endl;}
  17. getch();}
');