DANVILLE AREA COMMUNITY COLLEGE
INTRODUCTION TO COMPUTER SCIENCE
MATH 110,    Fall 2008
Solve the following Problems:
Problem (3-27):  (p. 231).
Problem (3-28):  (p. 232);
Problem (3-34):  (p. 232);
Hint:  (you don't have to follow this hint if you can solve these problems)
    (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;