Ask Question
15 November, 09:01

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

+2
Answers (1)
  1. 15 November, 11:26
    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?
Get an answer to your question ✅ “Write a single statement that prints outsideTemperature with 2 digits in the fraction ...” in 📙 Engineering if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers