Main function | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Main function

I don't understand the purpose of this function and how to complete it function main() { var num1 = parseInt(readLine(),10); var num2 = parseInt(readLine(),10); var num3 = parseInt(readLine(),10); var average;

26th Aug 2021, 2:21 PM
Arwa Hassan
Arwa Hassan - avatar
1 Answer
+ 1
This program should calculate the average value of the 3 numbers given var average = (num1 + num2 + num3) / 3;
26th Aug 2021, 2:25 PM
Obloev Komronbek
Obloev Komronbek - avatar