Ask Question
14 July, 14:22

Write an expression that executes the loop body as long as the user enters a non-negative number. Note: If the submitted code has an infinite loop, the system will stop running the code after a few seconds and report "Program end never reached." The system doesn't print the test case that caused the reported message.

+5
Answers (1)
  1. 14 July, 17:03
    0
    while (Num>=0) {

    System. out. println ("enter a another number");

    Num = in. nextInt ();

    }

    Explanation:

    The complete java code prompting a user to enter a number until a negative number is entered is given below:

    import java. util. Scanner;

    public class num6 {

    public static void main (String [] args) {

    Scanner in = new Scanner (System. in);

    System. out. println ("enter a number");

    int Num = in. nextInt ();

    while (Num>=0) {

    System. out. println ("enter a another number");

    Num = in. nextInt ();

    }

    System. out. println ("Done.");

    return;

    }

    }
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Write an expression that executes the loop body as long as the user enters a non-negative number. Note: If the submitted code has an ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers