Zadaca br11
1Zadaca br11
2
3#include <iostream>
4using namespace std;
5
6 int main ( ) {
7 int broj = 0;
8 int suma =0;
9
10 do{
11 Suma += broj;
12
13 cout << "Vnesi eden broj";
14 cin >> broj;
15 }
16 while (broj >= 1) ;
17
18 cout << " \nSumata e " << suma << endl;
19
20 return 0;
21}