the program should ask for the number of stars, then they should be printed. Here you can imagine using for() as a loop. And Write(), so the stars end up on the same line. You should only be able to enter 1-10 stars.
nclude <iostream> using namespace std; int main() { int stars; cout << "Enter the number of stars: "; cin >> stars; cout << stars << endl; return 0; } A: You can use the following code to get the number of stars: #include <iostream> using namespace std; int main() { int stars; cout << "Enter the number