Prijava
// Podatkovna zbirka: dowhile.cpp// Uporaba do/while zancne strukture#include <iostream>using namespace std;int main(){ int stevec = 1; do { cout << stevec << " "; } while (++stevec <= 10); system("pause"); return 0;}