Answer to Question #47572 in C++ for krad

Question #47572
3. Write a program that examines the value of a variable call temp. then display the following messages, depending on the value assigned to temp.
Temperature Message
Less than 0 ICE
Between 0 and 100 WATER
Exceeds 100 STEAM
In Switch Case
1
Expert's answer
2014-10-09T01:04:13-0400
#include <iostream>
using namespace std;
int main() {
int temp;
cout << "Enter temperature: ";
cin >> temp;
if ( temp < 0 ) {
cout << "Less than 0 ICE"
<< endl;
return 0;
}
if ( temp < 100 ) {
cout << "Between 0 and 100 WATER"
<< endl;
} else {
cout << "Exceeds 100 STEAM"
<< endl;
}
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