#include <iostream> #include <string> using namespace std; int main(){ int pom=0,dod=0,ujem=0; int z; cin>>pom; int licz=0; int tabujem[pom]={0}; int liczby[pom]={0}; for(int i=0;i<pom;i++){ cin>>z; if(z>0)dod=dod+z; if(z<0){ ujem=ujem+z; /* tabujem[licz]; licz++; */ } liczby[i]=z; } if((dod+ujem)<0){ cout<<"-1\n"; return 0; } cout<<dod<<"\n"; /* for(int i=0;i<pom;i++){ if(tabujem[i]==0){ break; } asd } */ return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | #include <iostream> #include <string> using namespace std; int main(){ int pom=0,dod=0,ujem=0; int z; cin>>pom; int licz=0; int tabujem[pom]={0}; int liczby[pom]={0}; for(int i=0;i<pom;i++){ cin>>z; if(z>0)dod=dod+z; if(z<0){ ujem=ujem+z; /* tabujem[licz]; licz++; */ } liczby[i]=z; } if((dod+ujem)<0){ cout<<"-1\n"; return 0; } cout<<dod<<"\n"; /* for(int i=0;i<pom;i++){ if(tabujem[i]==0){ break; } asd } */ return 0; } |