pattern or star of loop c++

#include <iostream>
using namespace std;

int leftbig(){
for(int i=1;i<=7;i++){
    for(int j=7;j>=i; j--){
        cout<<"*";
    }
    cout<<endl;
}

return 0;
}

int leftsmal(){
    for(int i=1;i<=7; i++){
        for(int j=1;j<=i;j++){
            cout<<"*";
    }
    cout<<endl;
    }
return 0;
}



int main(){
    leftbig();
    //leftsmal();
   
    return 0;
}

Post a Comment

0 Comments