MIPI_BaseC_WebinarFRTK/05_Lecture05/01_while_p11.c
2024-11-13 09:22:28 +03:00

13 lines
161 B
C

#include <stdio.h>
int main()
{
int n = 0;
while (n!=5)// лучше n<5
{
printf("Hello\n");
n++; // n = n+1
}
return 0;
}