MeraForum Community.No 1 Pakistani Forum Community - View Single Post - Loops In Java With Examples
View Single Post
(#1)
Old
Morash's Avatar
Morash Morash is offline
 


Posts: 17,781
My Photos: ()
Country:
Star Sign:
Join Date: Jul 2010
Location: ▌║█║▌│█│║▌║
Gender: Male
cool Loops In Java With Examples - >>   Show Printable Version  Show Printable Version   Email this Page  Email this Page   04-12-2014, 01:07 AM




Loops

A Statement Or A Set Of Statements That Is Executed Repeatedly Is Called Loop. The Statement In A Loop Are Executed For A Specified Number Of Times Or Until Some Given Condition Remains True.



Kinds

for Loop
while Loop
do-while Loop




for Loop

for Loop Is Used To Execute A Set Of Statements Repeatedly For A Fixed Number Of Times. It Has Some Parts, They Are;

Initialization
Condition
Increment Of Decrement
Body Of The Loop




Syntax

for ( initialization; condition; increment/decrement)
{
Statement;
}



Example







while Loop

It Is A Conditional Loop Statement Used To Execute A Statement Or A Set Of Statements As Long As The Given Condition Remains True. After Executing The Statements Under 'while' The Control Shifts Back To 'while'
And The Condition Is Tested Again. If The Given Condition Becomes False At Any Stage During Execution, The Execution Of The Body Of Loop Is Terminated And Control Shifts To The Statement That Comes Immediately After The Body Of The Loop.


Syntax

while (condition)
{
Statement;
}


Example







do-while Loop

It Is Also A Conditional Loop Statement. It Is Like while Loop But In This The Condition Is Tested After Executing The Statement Of The Loop. In do-while Loop The Body Of The Loop Is Executed At Least Once Before The Condition Is Tested.
It Is Repeatedly Executed As Long As The Test Condition Remains True.


Syntax

do
{
Statement;
}
while(condition);



Example





 





bE driveN wiTh puRpOse, Be r313n71355 in your alιgnмenт;
with excellence.
pAy n0 mInd to the ∂ιsιмραssισηε∂ เ๓ק๏tєภt ђคtєгร

.. нoolιgan
Reply With Quote Share on facebook
Sponsored Links