1//vars
2int A; //any variable will do
3
4// loop
5do {
6 A = 0; // clearing last input from last looping
7 cout << "request value for A";
8 cin >> A;
9
10}
11while (A != 'any value other than zero');
1Console.WriteLine("By the time that For loops exist...");
2Console.WriteLine("While loops are TRAAAAAAAAAAAAAAASH");