Skip to main content

Rhumbus Pattern

 /* @ToDo 


   Rhumbus Pattern
                *   *   *   *   *   
            *   *   *   *   *   
        *   *   *   *   *   
    *   *   *   *   *   
*   *   *   *   *   

   
*/


#include <iostream>
using namespace std;

int main(){
     #ifndef ONLINE_JUDGE
        freopen("../asset/input.txt","r",stdin);
        freopen("../asset/output.txt","w",stdout);
    #endif
    // Code here!!

    int ncin>>n;
    for(int i=0;i<n;i++){
        for(int j=1;j<n-i;j++)
            cout<<"\t";
        for(int j=0;j<n;j++)
            cout<<"*\t";
        cout<<endl;
    }

    return 0;
}

Comments

Subscribe to Get's Answer by Email