Be sure you have read (or at least skimmed) the assigned readings from chapters 2 and 3.
Do the following programming problems. You will end up with at least one code file per problem. Submit your program source (and any other needed files) by sending mail to bmassing@cs.trinity.edu, with each file as an attachment. Please use a subject line that mentions the course and the assignment (e.g., ``csci 1312 homework 2'' or ``CS1 hw2''). You can develop your programs on any system that provides the needed functionality, but I will test them on one of the department's Linux machines, so you should probably make sure they work in that environment before turning them in.
C = (5/9)(F - 32)The program should ask the user for the Fahrenheit temperature and print the equivalent Celsius temperature. You can use integers or floating-point numbers for this problem.
For this assignment only, you do not need to do any kind of checking that what the user enters is actually numeric (integer or floating-point, depending on your code), since we haven't yet talked about conditional execution. Just assume it is and do the required calculations.
For this assignment only, you do not need to do any kind of checking that what the user enters is actually an integer and non-negative, since we haven't yet talked about conditional execution. Just assume it is and do the required calculations.