13 lines
161 B
C
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;
|
||
|
}
|