Ask Question
23 November, 06:11

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

+2
Answers (1)
  1. 23 November, 09:52
    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 you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers