Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Problem #1: a- Write a method named isGreater Than(int a, int b) that takes two integers a and band checks whether a is greater than
Problem #1: a- Write a method named isGreater Than(int a, int b) that takes two integers a and band checks whether a is greater than b. The method returns true ifa is greater than b. Otherwise it returns false. b- Write a program that prompts the user to enter a maxValue and a sequence of integers, the program ends when the user enters an integer larger than maxValue. It prints the sum of all the numbers excluding the max Value and indicates whether the sum is greater than the max Value. Sample Run 1: Enter a maximum number that stops the sequence: 25 Enter a sequence of numbers until the program terminates: 15 3 19 13 7 28 The sum is 85, the sum is greater than 25 Program terminated. Sample Run 2: Enter a maximum number that stops the sequence: 33 Enter a sequence of numbers until the program terminates: 35 The sum is 0, the sum is less than 33 Program terminated. Problem #2: a) Write a method named display that accepts three numbers min, max and n. The method prints all numbers between min and max which are divisors of n and multiples of min. b) Write a program that prompts the user to enter 3 integer values min, max and n, then invokes the method display. If the user enters max before min (as in sample run2), the program swaps the values before calling the method Sample runl: Enter 3 integer values min, max, and n: 2 45 124 Divisors of 124 in the range 2 - 45 and multiples of 2: 2 Sample run2: Enter 3 integer values min, max, and n: 75 5 20 Divisors of 20 in the range 5 - 75 and multiples of 5: 5 10 20 Assignment Guidelines: This assignment is handed on Monday, 21 December and is due on Sunday, 27 December (before midnight). Assignments (java files or a complete java project that has been compressed using WinZip) should be uploaded to google classroom. Do not send files with the doc or txt extension Make sure that you use documentation and indentation 4
Step 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