Average of 5 inputted numbers | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Average of 5 inputted numbers

can you explain it?

30th Jun 2018, 7:35 AM
Maria Antonette Duran
Maria Antonette Duran - avatar
6 Answers
+ 1
Yeh, Ipang, you are right, fixed
30th Jun 2018, 9:31 AM
Дмитро Іванов
Дмитро Іванов - avatar
+ 1
Explain? Thats quite basic. Firstly we include iostream library, so we can operate with console input and output streams. Then with using directive we add an std namespace, that's not compulsory, but saves a bit time by preventing writing std::cin and std::cout instead of cin and cout. Then we declare a main function, which will run when we we will call a compiled executive file. In this function we declare two variables: sum where we will store the total of all input numbers and temp to which we will read the input from the console. Variables are of type float, so when we will calculate average it will not be rounded to integer. Then we we set a for cycle that iterates 5 times. On each iteration it takes an input from a console into temp variable and adds it to sum variable. That's a very simple code without error handling, so if you input something, which is not a number, it will throw an exception and crash.
30th Jun 2018, 9:51 AM
Дмитро Іванов
Дмитро Іванов - avatar
+ 1
After five numbers are read from the console and summed, the program will divide the sum by 5 and show a result in console. 5 is not just 5, but 5.0 because it is also is a floating point. Different compilers cast results of different number types differently, so if we want to ensure the result is float, its better all operands be float too.
30th Jun 2018, 9:55 AM
Дмитро Іванов
Дмитро Іванов - avatar
+ 1
(__Start__) || ____ v_________________ |_declare sum and avg_| || v ___ /\ ___ |__If i < 5__| -yes-+ || no ^ | || | _____ v____ || | | add input | || | |_to sum___| || |_______| v avg=sum/5 || v print avg || v (__End__)
30th Jun 2018, 10:56 AM
To Seek Glory in Battle is Glorious
To Seek Glory in Battle is Glorious - avatar
0
#include <iostream> using namespace std; int main() { float sum = 0; float temp; for (int i = 0; i<5; ++i) { cin>>temp; sum+=temp; } cout<<sum/5.0; }
30th Jun 2018, 7:46 AM
Дмитро Іванов
Дмитро Іванов - avatar
0
How to make that as a flowchart?
30th Jun 2018, 10:16 AM
Maria Antonette Duran
Maria Antonette Duran - avatar