Advertisement
rajeshinternshala

Untitled

Mar 5th, 2024
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.18 KB | None | 0 0
  1.  static String plusMult(List<Integer> A) {
  2.         int Reven = 0, Rodd = 0;
  3.         int tempEven = 1;
  4.         int tempOdd = 0;
  5.         for (int i = 0; i < A.size(); i++) {
  6.             if (i % 2 == 0) {
  7.                 if (i != tempEven) {
  8.                     if (i + 2 < A.size()) {
  9.                         Reven += (A.get(i) * A.get(i + 2));
  10.                         tempEven = i + 2;
  11.                     } else {
  12.                         Reven += A.get(i);
  13.                     }
  14.                 }
  15.             }
  16.             if (i % 2 != 0) {
  17.                 if (i != tempOdd) {
  18.                     if (i + 2 < A.size()) {
  19.                         Rodd += (A.get(i) * A.get(i + 2));
  20.                         tempOdd = i + 2;
  21.                     } else {
  22.                         Rodd += A.get(i);
  23.                     }
  24.                 }
  25.             }
  26.         }
  27.  
  28.         Reven = Reven % 2;
  29.         Rodd = Rodd % 2;
  30.         String result = " ";
  31.         if (Rodd > Reven) {
  32.             result = "ODD";
  33.         }
  34.         if (Reven > Rodd) {
  35.             result = "EVEN";
  36.         }
  37.         if (Reven == Rodd) {
  38.             result = "NEUTRAL";
  39.         }
  40.         return result;
  41.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement