(String[] args)
| 74 | } |
| 75 | |
| 76 | public static void main(String[] args) { |
| 77 | int[] arr = takingInput(); |
| 78 | Scanner sc = new Scanner(System.in); |
| 79 | int x = sc.nextInt(); |
| 80 | int n = pairSum(arr, x); |
| 81 | System.out.println(n); |
| 82 | |
| 83 | } |
| 84 | } |
nothing calls this directly
no test coverage detected