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