No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
[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 …
[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--) { …
The End.
bommavj