various examples of looping programs

give me an example of a loop program using the for , while ,or do while functions !
Last edited on
1
2
3
4
5
while ( input != correct_password)
{
  cout << "Wrong password. Try again.";
  cin >> input;
}
Topic archived. No new replies allowed.