| Author |
for loop
|
Tamana Joshi
Greenhorn
Joined: May 23, 2005
Posts: 21
|
|
hi all, i m new to java,i want to be an efficient in loops(for),please suggest any link where i can find questions on that? thankx in advance
|
 |
Svend Rost
Ranch Hand
Joined: Oct 23, 2002
Posts: 904
|
|
Im not quite sure what you means.. If you want any questions concerning for loops, try Google or find any half decent Java book for beginers. If you want the syntax for a for-loop: for( init variable; condition; iteration_statement) { //.. do stuff } e.g. for(int i=0; i<10; i++) { System.out.print(i); } will print: 0123456789 Feel free to reply with followup question /Svend Rost
|
 |
Nigel Browne
Ranch Hand
Joined: May 15, 2001
Posts: 673
|
|
|
The Java Tutorial language basics will answer your questions
|
 |
 |
|
|
subject: for loop
|
|
|