Answer to Question #13853 in C++ for Darryl kaye Abella Sanga

Question #13853
Write a program that will ask the user to enter a number n and display all the numbers from 1 to n on a single line.
1
Expert's answer
2012-08-31T08:09:03-0400
#include <iostream>
using namespace std;

int main (){
cout<<"Please, Enter n\n";
int n; cin>>n;
for (int i = 0 ; i < n ; i++)
& cout<< i+1 <<' ';

system("pause");
return 0;

}

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
APPROVED BY CLIENTS