Question #314780

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


Expert's answer

#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!

LATEST TUTORIALS
APPROVED BY CLIENTS