Trending This Week:

test

Post Top Ad

Your Ad Spot

Tuesday, June 14, 2022

C++ program to print reversed right half pyramid.

   





C++ program to print reversed right half pyramid.


#include <iostream>
using namespace std;

int main() {
    
    int n;
    cout<<"Enter Number : ";
    cin>>n;
    
    for(int i=n;i>=1;i--)
    {
        for(int j=i;j>=1;j--)
        {
            cout<<"* ";
        }
        cout<<endl;
    }

    return 0;
}    

Output :
















No comments:

Post a Comment

Post Top Ad

Your Ad Spot