How to take multiple inputs in kotlin? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How to take multiple inputs in kotlin?

Can anyone teach me how can we take multiple inputs from user in kotlin?!

14th Jul 2021, 12:21 PM
Sowmiyashree S
Sowmiyashree S - avatar
1 Answer
+ 7
SOWMIYASHREE S , there are various possibilities to do this task: (1) use an input for the number of required inputs and store it in n. then use a loop and take the inputs and count number of inputs. store the inputs in an array. exite counts when count reach the number in n (2) use input in a loop and store the input values in an array. if put is empty you can exit the loop (3) use input to take all values needed in one lin. split the input at separator you used (space, comma,...), store result of split in an array. => instead of using array to store the inputs, also other data structures can be used.
14th Jul 2021, 12:36 PM
Lothar
Lothar - avatar