1. The temperature of a city is obtained at a weather station in degrees centigrade. The job is to convert this temperature into its corresponding value in degrees Farenhiet. Assume the data type for the value of temperature to be 'double' and use the formula F=(9/5)*C+32. What is the input to the program? What is the output? Make a flowchart and write the pseudocode.
2.Calculate pay for part time employee. The regular hourly pay rate is $8. Employees would get time and a half pay for the first 5 hours over 40 and double time pay for all hours over 45. Write down the input, output and pseudocode logic for this problem.
3. A program prompts the user on the screen to enter a number below 100, then display a count on the screem, from 1 to the number entered by the user. For example, if a user enters 12, the screen displays 1 2 3 4 till 12. Write the input,output and pseudocode logic for this problem.