8.1.. Ispisati parne prirodne brojeve od 1 do 5.

Listing programa:

//p08111041
#include <iostream>
using namespace std;

int main()
{
	int i;
	i=1;
	while (i<=5)
	{
	   if (i%2==0)
	     cout<<i<<endl;
	}
    return 0;
}

Ispis na ekranu:

Index