Question: What does the following code display? int main ( ) { double price = 1 2 . 9 9 ; cout.setf ( ios::fixed ) ;

What does the following code display?
int main()
{
double price =12.99;
cout.setf(ios::fixed);
cout.setf(ios::showpoint);
cout.precision(2);
double tax = price *.062;
cout "Tax charged is $" tax endl;
}
Tax charged is $0.8
Tax charged is $0.80
Tax charged is $0.
Tax charged is $0.80538
What does the following code display? int main (

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!