1-
Using the switch statement, write a program that allows the user to convert either from degrees Celsius to Fahrenheit or degrees
Fahrenheit to Celsius. Use the following formulas:
degreesC = 5(degreesF-32)/9
degreesF = (9(degreesC)/5) + 32
Prompt the user to enter a temperature and either a 'C'(or 'c') for
Celsius or an 'F'(or 'f') for Fahrenheit: allow
either upper or lower case,
but if anything other than 'C', 'c', 'F', or 'f' is entered, print an error
message that tells the user how to enter a valid selection (upper or lower case 'C' or 'F').
2-
Perform the above program again using multiple conditions in the
if statement.
3-
Write a program in C++ to
accept number to find if even or odd. The program will terminate after 15 entries. Then output how many even numbers & odd numbers.
4-
Write a C++ program that accept pairs of numbers, calculate the
sum, if the sum is positive display message “The sum is positive”. The program terminates after 10 entries.