double a, b, c;
int temp_round;

a = 1.674;
b = 1.322;

cout.setf(ios::fixed);
cout << setprecision(2) <<"a="<<a<< endl;
cout <<"b="<<b<< endl;
cout <<...