Computer Science, asked by Arp25X, 9 months ago

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 DakshMaahor
2

Answer:

int main()

{

for (int i = 1;i<=5;i++)

{

cout << "Be Good and Do Good" << endl;

cout << "" << endl;

}

return 0;

}

Similar questions