Posts

Showing posts from November, 2011

Fast Cash Commissions

Fast cash commissions is a guide that teach people how to make money online !Many people wonder it was a real guide or just a scam !The only way to find out is to buy this fast cash commissions guide ! You need not to worry about the true or false to buy this guide without any real people comment or feedback from people who brought it ! Actually you are no need to worry since the clickbank which is the online ebook store that provide 60 days 100% satisfy else 100% money return instant from your credit card ,PayPal or debit card ! Click here to watch the video about the Fast Cash Commissions !

what is the difference between while and do while

A while loop can be used to execute a body of statement when the condition is correct! The syntax is like : while(condition){ //statements body } Example: int j=0,i=3; while(j<i){ System.out.println(j); j++; } Output : 0 1 2 The do...while loop almost same with the while loop except it will execute the statement before the checking the condition !Here you go the syntax : do{ //statement } Example: /*The j is not smaller that i but it will print the value of j.It won't print any thing if you put this condition on the while loop*/ int j=0,i=0; do{ System.out.println(j); }while(j<i);  Output : 0