Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #55.0K
~244 People Reached
Favorite Forums
Favorite Tags
java x 3

2 Posted Topics

Member Avatar for WillisTi

[quote=WillisTi;73549]Hi, Fairly new to java and programming. Could anyone explain the difference between a for loop and a do while loop in relation to writing a program and typing in numbers and displaying the total. Thanks[/quote] for loop is evaluate up to the condition is false. whereas do-while loop is …

Member Avatar for bommavj
0
152
Member Avatar for ThUgLoRd

[quote=ThUgLoRd;263155]ok i just started loops in my java class and im stuck on getting this loop working i dunno what all math to do to get these numbers for the output [I][B]97, 84, 72, 61, 51, ... 1[/B][/I][/quote] class Loops { public static void main(String[] args) { for(int i=97;i>0;i--) { …

Member Avatar for bommavj
0
92

The End.