Write a C++ program that declares three variables minNum, midNum and maxNum to receive three integers read from the keyboard. The inputs are unsorted and can be read into the three variables in any order, for example, the first read number in minNum may not be the smallest. However, your program should then sort the three numbers to ensure minNum ≤ midNum ≤ maxNum and display them in this order. has to be in ascending order
thank you
1
Expert's answer
2012-09-25T11:31:15-0400
#include <iostream> using namespace std; int main (){
int minNum, midNum, maxNum;
cout<<"Enter numbers please!\n";
cin>> minNum >> midNum >> maxNum ;
if (minNum > midNum) swap(midNum,minNum); if (midNum > maxNum) swap(midNum,maxNum); if (minNum > midNum) swap(midNum,minNum); cout<< minNum << ' ' << midNum << ' ' << maxNum <<endl;
Comments
Leave a comment