Menampilkan # dalam bentuk huruf H

#include <iostream>
#include <conio.h>
using namespace std;
main (){
    int angka;

    cout <<"Masukkan Nilai : ";
    cin >> angka;

   for(int a=1; a<=angka; a++)
  {
     for(int i=0; i<angka; i++)
    {
       if(i<1 || i == angka-1)
    {
    cout<<"#";
    }

        else if(a == (angka/2)+1)
    {
    cout<<"#";
    }
        else
    {
        cout<<" ";
    }
    }
    cout<<endl;
        }
getch();
return 0;
}

Output:

Subscribe for latest Apps and Games


0 komentar:

Post a Comment