Question
I need help with this question! The purpose of this problem is to write some small functions and practice passing things around amoung functions. 1)
I need help with this question!
The purpose of this problem is to write some small functions and practice passing things around amoung functions. 1) The main function shall ask the user to enter three numbers and read the three numbers. 2) Write a function named findSum that takes three numbers as arguments and returns their sum. The main function shall call this function. 3) Write a function named findAverage that takes the sum and the number of numbers and returns the average. The main function shall call this function. 4) Write a function named findSmallest that takes the three numbers and returns the smallest value. The main function shall call this function. 5) The main function shall print the results in the following format, with two decimal positions and the decimal points aligned:
Results: First number 17.23 Second number 3.98 Third number 22.32 Total 43.53 Average 14.51 Smallest 3.98
Test the program twice with the following two sets of numbers:
37.144 2.4144 19 4.23 5.78 6.21
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started