14 lines
140 B
C
14 lines
140 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
int n;
|
||
|
n=1;
|
||
|
while (n <= 5)
|
||
|
{
|
||
|
printf("%d\n", n);
|
||
|
n++;
|
||
|
}
|
||
|
return 0;
|
||
|
}
|