(1) input
ONE Ctemp,
output a Ftemp.
(2) input
ONE Ftemp,
output a Ctemp.
(3) Print
the table
the problem asked.
(4) Print a
similar
table only for even number inputs, i.e. Ctemp = 2, 4, 6,. . . 100.)
(5)One of the function suggested is as the
following,
you should write the second function.
int celcius( int fTemp )
{return static_cast< int >
( 5.0 / 9.0
* ( fTemp - 32 ) ); }
Exercise 3.28:
You should write and test the function first.
Exercise 3.34:
A line of
the function suggested is as following:
return rand() %
2;