8.2.. Ispisati prirodne brojeve od 1 do 17.

Listing programa:

//p08211034//
#include <iostream>

using namespace std;
int main()
{
     int i;
     i=1;
     while (i<=17)
     {
       cout<<i<<endl;
       i++;
     }
    return 0;
}

Ispis na ekranu:

Index