Question #150289

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

Expert's answer

#include <iostream>

int main() {
    int temp;
    std::cout << "Enter temp: ";
    std::cin >> temp;
    if (temp < 0) {
        std::cout << "ICE";
    }
    else {
        if (temp > 100) {
            std::cout << "STEAM";
        }
        else {
            std::cout << "WATER";
        }
    }
}

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!

LATEST TUTORIALS
APPROVED BY CLIENTS