0
Guys how to program this using "for loop" thankyouuu
***** ***** ***** ***** ***** and * ** *** ** *
2 Answers
+ 1
#include <iostream>
int main()
{
std::cout<<"*****\n*****\n*****\n*****\n*****\n";
return 0;
}
+ 1
for(int a = 0; a < 5; a++)
{
cout << "*****\n";
}