Цикл do-while
int i;
i = 0;
do {
cout << i; // Вывести в окно сообщений LabPP_Automat значение i
i++; // Увеличить i на 1
} while (i < 10) // Выполнять цикл покуда i меньше 10
Created with the Personal Edition of HelpNDoc: Streamline Your Documentation Process with a Help Authoring Tool