Can you explain for loop with example. for(int a=1; a<=10;a++) { System.out.println(a);} | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Can you explain for loop with example. for(int a=1; a<=10;a++) { System.out.println(a);}

11th Feb 2020, 12:33 AM
US.b
 US.b - avatar
14 Answers
+ 1
a<=10 is the condition that a is not larger than 10
11th Feb 2020, 12:50 AM
Sonic
Sonic - avatar
+ 2
for(int a = 1; a <= 10; a++) int a = 1 means your loop starts at 1 a <= 10 end condition, if a gets 11 the loop stops a++ increments a a = 1 -> print 1 a = 2 -> print 2 ... a = 10 -> print 10 output: 1 2 3 4 5 6 7 8 9 10
11th Feb 2020, 1:05 AM
Denise Roßberg
Denise Roßberg - avatar
+ 1
You already have an example there.
11th Feb 2020, 12:40 AM
Sonic
Sonic - avatar
+ 1
I need explanation step by step for the example
11th Feb 2020, 12:41 AM
US.b
 US.b - avatar
+ 1
The value of a is printed for values ranging from 1 to 10. For loops are used to repeat actions.
11th Feb 2020, 12:42 AM
Sonic
Sonic - avatar
+ 1
What is data type
11th Feb 2020, 12:49 AM
US.b
 US.b - avatar
+ 1
Examples of condition
11th Feb 2020, 12:49 AM
US.b
 US.b - avatar
+ 1
a++ is ......
11th Feb 2020, 12:50 AM
US.b
 US.b - avatar
+ 1
Data types are like int(eger) in this case.
11th Feb 2020, 12:50 AM
Sonic
Sonic - avatar
+ 1
I recommend that you do the Java tutorial here.
11th Feb 2020, 12:51 AM
Sonic
Sonic - avatar
+ 1
a++ is shorthand for a=a+1 It's an increment operator.
11th Feb 2020, 12:52 AM
Sonic
Sonic - avatar
0
a is 1 2 3 4 5 6 7 8 9 10
12th Feb 2020, 11:55 AM
Esmael Fedlu
Esmael Fedlu - avatar
0
Last value will be print 10
12th Feb 2020, 3:11 PM
A S Raghuvanshi
A S Raghuvanshi - avatar
0
Your a begins to a=1, a++ a=2, a++..............up to a=10. End
12th Feb 2020, 9:27 PM
Josias BBeatz Kikamatha
Josias BBeatz Kikamatha - avatar