Untitled
unknown
c_cpp
2 years ago
260 B
6
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