Untitled
Anonymous
c_cpp
12/03/2023 10:52 AM
348 B
17
Indexable
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
int x = 1;
int zbir = 0;
while(x <= n) {
int broj;
cin >> broj;
zbir += broj;
x++;
}
cout << zbir << endl;
return 0;
}
Editor is loading...
Leave a Comment