Ask Question
3 June, 15:37

Write a single statement that prints outsideTemperature with 2 digits in the fraction

+3
Answers (1)
  1. 3 June, 16:02
    0
    outsideTemperature=108.90

    Explanation:

    #include

    #include

    #include

    using namespace std;

    int main ()

    {

    double outsideTemperature = 108.90;

    / * print outside temperature * /

    cout << setprecision (2) << fixed << outsideTemperature << endl;

    return 0;

    }
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Write a single statement that prints outsideTemperature with 2 digits in the fraction ...” in 📗 Engineering 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