Results 1 to 6 of 6
Thread: for loop output
- 03-18-2011, 10:53 AM #1
Member
- Join Date
- Nov 2010
- Posts
- 90
- Rep Power
- 0
for loop output
hi guys we are learning loops this week at uni and a tute was to get the output
1 2 3.... 10
11 12 13.... 20
........
91 92 93...... 100
i got this working but not sure if i did it right... Did i miss something here or is this how it would be done?
Java Code:int i; int j; for( i=1; i <= 10; ){ for( j=1; j <= 10; j++){ System.out.print(i + " "); i++ } System.out.println(); }
might be typos... My net is down so typing this on mobile
thanks guys
- 03-18-2011, 11:28 AM #2
- Join Date
- Sep 2008
- Location
- Voorschoten, the Netherlands
- Posts
- 11,601
- Blog Entries
- 7
- Rep Power
- 17
- 03-18-2011, 01:04 PM #3
Ahem, Jos!The code is fine (ignoring a few little typos).
The outer loop counter is being incremented inside the inner loop (ignoring the missing semicolon) -- and take a closer look at what's being printed .
db
- 03-18-2011, 01:08 PM #4
- Join Date
- Sep 2008
- Location
- Voorschoten, the Netherlands
- Posts
- 11,601
- Blog Entries
- 7
- Rep Power
- 17
When people rob a bank they get a penalty; when banks rob people they get a bonus.
- 03-18-2011, 05:29 PM #5
Senior Member
- Join Date
- Nov 2010
- Posts
- 210
- Rep Power
- 3
Hint: Only one loop is required, and the modulus operator will come in handy.
- 03-18-2011, 05:49 PM #6
Similar Threads
-
JTextField loop 2x for-loop WEIRD!
By Streetproject in forum AWT / SwingReplies: 2Last Post: 02-16-2011, 05:46 PM -
how to get the resultset output into an output file
By renu in forum New To JavaReplies: 0Last Post: 09-30-2010, 08:16 PM -
Java, output string, getting correct output? HELP!
By computerboyo in forum New To JavaReplies: 2Last Post: 02-25-2009, 11:44 PM -
[SOLVED] Overwrite text file line with output stream loop
By jenni in forum New To JavaReplies: 3Last Post: 02-16-2009, 09:20 PM -
how to print output on same line in 'while loop'?
By acidblue in forum New To JavaReplies: 5Last Post: 12-13-2007, 02:30 AM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks