Ask Question

Create a variable 'temp' and assign the value in Celsius. Display the message 'It's extremely hot day today!' if the temperature is greater than 40oC otherwise, displays 'It's not too hot!

Answers (1)
  1. 5 October, 00:11
    0
    This code is written using C++

    Comments are used for explanatory purpose

    Program starts here

    #include

    using namespace std;

    int main () {

    int temp;

    //Prompt user for input

    cout<<"Enter temperature (in Celcius) : ";

    //Check if input is acceptable

    while (! (cin>>temp)) {

    cout << "That was invalid. Enter a valid digit: "<
    cin. clear (); / / reset the failed input

    cin. ignore (123,'/n'); //Discard previous input

    }

    //Check if temp is greater than 40

    if (temp>40) {

    cout<<"It's extremely hot day today!";

    }

    else{//If otherwise

    cout<<"It's not too hot!";

    }

    return 0;

    }

    //End of Program
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Create a variable 'temp' and assign the value in Celsius. Display the message 'It's extremely hot day today!' if the temperature is greater ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers
Sign In
Ask Question