Untitled

 avatar
unknown
plain_text
2 months ago
408 B
2
Indexable
#include <cstdlib>
#include <iostream>
using namespace std;
int main(int argc, char *argv[]) 
{
    int rrjeshta,shtylla;
    cout<<"jepni numrin e rrjeshtave dhe shtyllave \n";
    cin >> rrjeshta;
    cin >> shtylla;
    for(int i=1;i<=rrjeshta;i++){
       for(int j=1;j<=shtylla;j++){
           
            cout << " *";
       }
       cout<<endl;
    }
    system("Pause");
    return EXIT_SUCCESS;
}
Leave a Comment