+ 2
Whats wrong here.
suppose i want to calculate the average of three numbers and i write this way. a=4; b=3; c=1; avg=a*b*c/3; where did i go wrong
3 odpowiedzi
+ 7
You can't multiply it, you'll need to count it up:
( a + b + c ) / 3
Remeber the brackets!
+ 3
ok thanks
0
sum of numbers:
(a+b+c)/3