Write a program in C where the Output shows the text as "Be Good and Do Good" in five separate lines leaving space between the lines.
Answers
Answered by
2
Answer:
int main()
{
for (int i = 1;i<=5;i++)
{
cout << "Be Good and Do Good" << endl;
cout << "" << endl;
}
return 0;
}
Similar questions