Answer to Question #314780 in C++ for tesfaye

Question #314780

write a c ++ application to print out the numbres 10 through 49


1
Expert's answer
2022-03-20T09:50:28-0400
#include <iostream>

using namespace std;

int main()
{
	for (int i = 10; i <= 49; i++)
	{
		cout << i << " ";
	}
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog