Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main(){
- int pozitivni = 0;
- int negativni = 0;
- for(int i = 1; i <= 10; i++) {
- int broj;
- cin >> broj;
- if(broj < 0) {
- negativni++;
- }
- else {
- pozitivni++;
- }
- }
- if(negativni == pozitivni) {
- cout << "isto vneseni" << endl;
- }
- else if(pozitivni > negativni) {
- cout << "ima poveke pozitivni" << endl;
- }
- else if(negativni > pozitivni) {
- cout << "ima poveke negativni" << endl;
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement