8.1.. Ispisati neparne prirodne brojeve od 1 do n.

Listing programa:

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

int main()
{
	int i;
	int n;
	cout<<"Do broja?"<<endl;
	cin>>n;
	i=1;
	while (i<=n)
	{
	  if (i%2!=0)
	     cout<<i<<endl;
	  i++;
	}
    return 0;
}

Ispis na ekranu:

Index