Answered step by step
Verified Expert Solution
Question
1 Approved Answer
JAVA PROGRAMMING Write a program that accepts two lists of integers, each terminated by the sentinel -999, and 4 reports whether or not there are
JAVA PROGRAMMING
Write a program that accepts two lists of integers, each terminated by the sentinel -999, and 4 reports whether or not there are two values, one from each list, with sum equal to zero. Your program should utilize two methods: one that reads a list of integers into an array (see Exercise la) and another that returns true if and only if there are two values, one from each array, with sum equal to zero. For example, the two arrays [2,-3, 1,7,9] and [6,7,-5, 3, 4, -2] satisfy the "zero sum" criterion because the first array contains 2 and the second 2 Enter up to 100 integers, terminating the list with -999: 87-2-6-9-1482-999 Enter up to 100 integers, terminati 806666-999 It is true that there is a zero sum pair. ing the list with-999 Enter up to 100 integers, terminating the list with -999 8245 -3-1-8-7-4 36-999 Enter up to 100 integers, terminating the list with -999: 12 3-999 It is true that there is a zero sum pair. Enter up to 100 integers, terminating the list with-999: 8765-4-3-2-1-999 Enter up to 100 integers, terminating the list with-999: 18 16-4-3 7-999 It is false that there is a zero sum pairStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started