You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
465 B
17 lines
465 B
#include <iostream>
|
|
int main()
|
|
{
|
|
using namespace std;
|
|
cout.setf(ios_base::fixed, ios_base::floatfield);
|
|
float tub = 10.0 / 3.0;
|
|
double mint = 10.0 / 3.0;
|
|
const float million = 1.0e6;
|
|
|
|
cout << "tub = " << tub;
|
|
cout << ", a million tubs = " << million * tub;
|
|
cout << ",\nand ten million tubs = ";
|
|
cout << 10 * million * tub << endl;
|
|
|
|
cout << "mint = " << mint << " and a million mints = ";
|
|
cout << million * mint << endl;
|
|
}
|