Respuesta :
Answer:
The program in C++ is as follows
#include <iostream>
using namespace std;
int main(){
int n1, n2, n3, largest, smallest;
cin>>n1>>n2>>n3;
if(n1 >= n2 && n1>=n3){ largest = n1; }
else if(n2 >= n1 && n2>=n3){ largest = n2; }
else{ largest = n3; }
if(n1 <= n2 && n1<=n3){ smallest = n1; }
else if(n2 <= n1 && n2<=n3){ smallest = n2; }
else{ largest = n3; }
cout<<"Smallest: "<<smallest<<endl;
cout<<"Largest: "<<largest<<endl;
return 0;
}
Explanation:
Declare all variables
int n1, n2, n3, largest, smallest;
Get input for the three numbers
cin>>n1>>n2>>n3;
Check if n1 is the largest
if(n1 >= n2 && n1>=n3){ largest = n1; }
Check if n2 is the largest
else if(n2 >= n1 && n2>=n3){ largest = n2; }
Otherwise, n3 is the largest
else{ largest = n3; }
Check if n1 is the smallest
if(n1 <= n2 && n1<=n3){ smallest = n1; }
Check if n2 is the smallest
else if(n2 <= n1 && n2<=n3){ smallest = n2; }
Otherwise, n3 is the smallest
else{ largest = n3; }
Print the smallest
cout<<"Smallest: "<<smallest<<endl;
Print the largest
cout<<"Largest: "<<largest<<endl;