can we make a loop in java of repeating same question for 10 times with a line code ? | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
+ 2

can we make a loop in java of repeating same question for 10 times with a line code ?

27th Sep 2017, 6:32 AM
Raghav Khullar
Raghav Khullar - avatar
2 Réponses
+ 12
for (int i=0; i<10; i++) System.out.println("question?");
27th Sep 2017, 1:09 PM
Tashi N
Tashi N - avatar
+ 4
yes, use for loop, it is also covered in sololearn Java tutorial.
27th Sep 2017, 6:48 AM
AutomatedpROCESSES
AutomatedpROCESSES - avatar