Advertisement
Josif_tepe

Untitled

Jun 1st, 2021
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int n;
  7. cin >> n;
  8. int niza[n];
  9. for(int i = 0; i < n; i++) {
  10. cin >> niza[i];
  11. }
  12. int zbir = 0;
  13. for(int i = 0; i < n; i++) {
  14. if((niza[i] % 2 == 0) or (niza[i] % 3 == 0) or (niza[i] % 5 == 0)) {
  15. cout << "Brojot " << niza[i] << " e deliv so 2, 3 ili 5" << endl;
  16. zbir += niza[i];
  17. }
  18. }
  19. cout << "Zbirot e: " << zbir << endl;
  20. return 0;
  21. }
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement