Answer to Question #258894 in C++ for yan

Question #258894

Make a program that will accept an integer and loop from 1 to that integer. Then, print all numbers from that range that are greater than 3.





1
Expert's answer
2021-10-31T12:00:52-0400
#include<iostream>
#include<string>


using namespace std;


int main(){
	int number;


	cout<<"Enter number >1: ";
	cin>>number;
	cout<<"\nAll numbers that are greater than 3:\n";
	for(int i=1;i<=number;i++){
		if(i>3){
			cout<<i<<"\n";
		}
	}


	cin>>number;




	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
New on Blog
APPROVED BY CLIENTS