8.3.. Ispisati prirodne brojeve od 1 do 17.

Listing programa:

#include <iostream>
using namespace std;

int main()
{
    int i=1; 
    do {
       cout<<i<<endl;
       i++;
    } while(i<=17);

    return 0;
}

Ispis na ekranu:

Index