› Foros › PC › General
#include <stdio.h>#include <conio.h>int main (){ int i = 6; while (i<=20){ printf ("%d\n",i); i = i + 2; } getch();}