Question: Scanner kb = new Scanner(System.in); System.out.print(Enter a positive integer: ); int R = kb.nextInt(); while (!(R?0) ){ //what is ? between R and 0? System.out.print(Enter

Scanner kb = new Scanner(System.in); System.out.print("Enter a positive integer: "); int R = kb.nextInt();

while (!(R?0) ){ //what is ? between R and 0? System.out.print("Enter a positive integer: "); R = kb.nextInt(); }

and repeats the keyboard reading process if this number is 0 or NEGATIVE.

What is that missing part in code "while(!(R?0))"? Give a relational operator ==, !=, <, >, <=, or >= here:

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!