MIPI_BaseC_WebinarFRTK/05_Lecture05/07_do_while_p24.c

12 lines
203 B
C
Raw Permalink Normal View History

2024-11-13 09:22:28 +03:00
#include <stdio.h>
int main(int argc, char **argv)
{
int a = 4, b = 6;
do
{
a++;
} while (a < b); // Не забываем точку с запятой в конце
return 0;
}