Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Java programming - problem in picture, my method always returns true and I don't know why. My code: import java.util.Scanner; public class ValueChecker { public

Java programming - problem in picture, my method always returns true and I don't know why.

image text in transcribed

My code:

import java.util.Scanner;

public class ValueChecker {

public static boolean checkValues(Scanner input) { while (true) { int num = input.nextInt(); if ((num >= -90) && (num

public static void main(String[] args) { Scanner scnr = new Scanner(System.in); boolean allAllowed; allAllowed = checkValues(scnr); if (allAllowed) { System.out.println("Only allowed values"); } else { System.out.println("Unallowed value(s)"); } } }

Define the method checkValues() with a Scanner parameter that reads integers from input until 1 is read. The method returns true if none of the integers read before 1 are between 100 and 90 inclusive. Otherwise, the method returns false. Ex: If the input is 295701, then the output is: Unallowed value(s)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

The Database Relational Model A Retrospective Review And Analysis

Authors: C. J. Date

1st Edition

0201612941, 978-0201612943

More Books

Students also viewed these Databases questions

Question

2. What potential barriers would you encourage Samuel to avoid?

Answered: 1 week ago