Listing 4
cout << "\nTypes of arithmetic" << endl;
cout << " Float: 10.0/3.0 = "
<< 10.0/3.0 << endl;
cout << " Mixed: 10.0/3 = " << 10.0/3
<< endl;
cout << " Integer: 10/3 = " << 10/3 << endl;
Listing 4
|