Hi i have just started my c++ class and really having hard time with that.i was assigned to draw a graph which should look like dis :
*****
*****
*****
*****
*****
This is what i am trying but getting only this result :
*****
*
*
*
*
Please help me out with this:
#include<iostream>
using namespace std;
int main()
{
int i=0;
while (i<4)
{
cout<<'*';
i++;
}
int j=0;
while (j<5)
{
cout<<'*';
j++;
cout<<endl;
i++;
}
return 0;
}