Why don't all the quantities add up and come out separately? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Why don't all the quantities add up and come out separately?

fun main(args: Array<String>) { var arr = arrayOf(1, 3, 5) var x=0 arr.forEach { x+= it *4 println(x) }

20th Jul 2022, 4:42 PM
ANDRES PENA
ANDRES PENA - avatar
3 Answers
+ 4
put println(x) outside after loop..
20th Jul 2022, 4:46 PM
Jayakrishna 🇮🇳
+ 2
Thanks 💖
20th Jul 2022, 4:49 PM
ANDRES PENA
ANDRES PENA - avatar
+ 1
I want the 3 quantities to be added at the end
20th Jul 2022, 4:44 PM
ANDRES PENA
ANDRES PENA - avatar