Guys i nid example programs!

hi guys! i'm joshua and i'm a student of information technology 1st yr.
can you pls. help me on my project.
Can you guys give me 5 simple examples each of while loop, do while, and for while loop.

Hope for your response! pls. help..
Many thanks! Godbless..
Hey,
You can google the types of loops you are looking for and find plenty of examples along with explanation.
The following is an an example of a for loop:

for(int ctr=1;ctr<=20; ctr++)
{
cout<< ctr <<"\n";
}

while example:
while(string name ="tim")
{
lstring lastname = "jones"
cout << lastname<<endl;
}

by the way do you have a book for this course?
Topic archived. No new replies allowed.