Problem 1 Write a program that inputs a series of non-negative integers, a first negative integer indicates the end of the input sequence. The program determines and prints the amount of input numbers that are EVEN and divisible by 3 and their average. Your program should use loop WHILE
Problem 2: Write a program that first reads one positive integer that will indicate an amount of integer inputs that will come after that. The program will read the series of the integer numbers (amount of integer numbers will be equal to the first input number) and will find the amount of the even numbers that are divisible by 3, their sum and their average.
Problem 3: Write a program that prompts the user to enter three integer numbers. If the product of the input numbers is larger than the sum of the input numbers, program prints the average of the last digits of the input numbers, if the product of the input numbers is equal to the sum of the input numbers, program prints product of the last digits of the input numbers, and otherwise program prints the average of the input numbers and outputs tne result.
Problem 4: Write a program that reads 10 integers and finds and returns the maximal between three values: number of positive inputs, number of negative inputs and number of zeros.
Problem 5: Write a program that first reads one integer. If the integer is EVEN, the program reads 7 real numbers. Each number indicates the Fahrenheit temperature for one day. The program finds and prints the average Celsius temperature for these 7 days. Use the following formula to convert Fahrenheit to Celsius: Celsius = (5/9)*(Fahrenheit-32) If the integer is ODD, the program reads 7 real numbers. Each number indicates the Celsius temperature for one day. The program finds and prints the average Fahrenheit temperature for these 7 days. Use the following formula to convert Celsius to Fahrenheit: Fahrenheit = (9/5)* Celsius + 32 Use loop WHILE in this program.