Write a program to perform calculations on three user floating-point numbers between 0 and 100 inclusive and print the results with different formatting.
• Prompt the user to "Enter 3 floating-point numbers between 0 and 100 inclusive: "
• If the data is outside that range, print "THE DATA IS INVALID!". Otherwise, do the following calculations:
• Print "Average using scientific notation: " followed by the correct number.
• Print "Square root of the average to eight decimal places: " followed by the correct number.
• Print "Rounded average: " followed by the correct number.
• Print "Integer average: " followed by the correct number whether it's odd or even in parenthesis.
A sample run with three good numbers:
Enter 3 floating-point numbers between 0 and 100 inclusive:
23.456789
45.6789
67.89
Average using scientific notation: 4.567523e+01
Square root of the average to eight decimal places: 6.75834519
Rounded average: 46
Integer average: 45 (odd)