Q:

Write A C++ Program To Print Half Pyramid Alternative Using ( * ) Star And Alphabet

0

Write A C++ Program To Print Half Pyramid Alternative Using ( * ) Star And Alphabet

*
*A
*A*
*A*A
*A*A*
*A*A*A

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#include<iostream>
using namespace std;

int main()
{
int i,j,n;
cout<<"Enter the No Of Row\n";
cin>>n;
for(i=1;i<=n;i++)
{
for(j=1;j<=i;j++)
{
if(j%2==0)
cout<<"A";
else
cout<<"*";
}
cout<<"\n";
}
return 0;
}

 

Output:

Enter the No of Row 

6

*
*A
*A*
*A*A
*A*A*
*A*A*A

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Write A C++ Program To Print Perfact Square Of Pro... >>
<< Write A C++ Program To Print INDIA Pattern As Give...