import java.util.*; public class BackPropagationMod { void testModSeries(int x) { if(x % 2 == 0) {} else if(x % 2 != 0) {} if(x >= 0) { if(x % 3 == 0) {} else if(x % 3 == 1) {} else if(x % 3 == 2) {} } if(x % 2 == 0) {} else if(x % 2 == 1) {} else if(x % 2 == -1) {} } void testGt(int[] arr) { if (arr.length % 5 >= 2) { } else if(arr.length % 5 == 1) { } else if(arr.length % 5 == 0) { } } void testWrongFizzBuzz() { for (int i = 1; i <= 100; i++) { if (i % 3 == 0) { System.out.println("Fizz"); } else if(i % 5 == 0) { System.out.println("Buzz"); } else if(i % 15 == 0) { System.out.println("FizzBuzz"); } else { System.out.println(i); } } } void testSign(int x) { if (x % 2 == 1 && x < 0) {} if (x % 2 == -1 && x > 0) {} if (x % 2 > -1 && x < 0) {} if (x % 2 > -1 && x > 0) {} } // IDEABKL-6662 void testMod510(StringBuilder sb, int pos) { if (pos % 5 == 0) { sb.append('.'); } else if (pos % 10 == 0) { } } }