is there any smaller way than using System.out.println() 16 times
is there any smaller way than using System.out.println() 16 times
Resolved
Comments (10)
- Popular
- New
- Old
You must be signed in to leave a comment
Thomas
15 May 2019, 00:52
See Dedcom --- perfect --- THX
0
hemant
31 March 2019, 07:40
thanks
0
hemant
30 March 2019, 09:25
how does i use loop for strings?please tell me!
0
Dedcom
30 March 2019, 13:39solution
for (int i=0; i <16 ; i++){
System.out.println ("your statement");
}
+4
illia
18 April 2019, 01:08
is this four loop
0
Dedcom
21 April 2019, 10:59
yes this is for loop
0
romeo
18 May 2019, 21:12
Why does the loop contain an integer variable?
0
Dedcom
19 May 2019, 11:25
because we can only specify the number of times the loop will run using integers.
0
romeo
20 May 2019, 22:55
Thank you dedcom
0
Wojtek
30 March 2019, 09:14
use loop
0