Hello <span>Enriqueliz5443</span><span>
Answer: Before using the data type string, the program must include the header file string
Hope this Helps!
-Chris</span>
Word Wrap
As the name allows, the word wraps around the document once it reaches the border, thus making it the answer.
Hope this helps!
You would press the backspace key
Answer:
#include<ios>// HEADER FILe
#include<iomanip> // HEADER FILE
using namespace std;// namespace
int main() // main function
{
double tem=103.45632; // variable declaration
cout<<" The outside Temperature is:";
cout<<fixed<<setprecision(2)<<tem; // display
return 0;
}
Explanation:
<u>The following are the description of the program</u>.
- set the required header files and namespaces, then declare the main method and inside the main function.
- Set the double data type variable 'tem' and initialize the value '103.45632'.
- Finally, print the following message and print the output through the cout that is predefined function.
C 20 previous typing actions