#include // Preprocessor Directives #include #include #include #include struct customer { char name [20] ; double balance ; int branch ; } customer_rec1, customer_rec2, customer_rec3 ; void main() { cout << setprecision (2) // number of digits to the right is 2 << setiosflags(ios::fixed) // display numbers in fixed form << setiosflags(ios::showpoint); // print trailing zeros strcpy( customer_rec1.name, "Phil Payne") ; customer_rec1.balance = 1234.56 ; customer_rec1.branch = 14 ; strcpy( customer_rec2.name, "June Fordham") ; customer_rec2.balance = 2076.95 ; customer_rec2.branch = 8 ; strcpy( customer_rec3.name, "Jim Chaires") ; customer_rec3.balance = 815.12 ; customer_rec3.branch = 12 ; cout << endl << setw(20) << setiosflags(ios::left)<