Search:

Type: Posts; User: javapenguin

Search: Search took 0.11 seconds.

  1. Re: Not sure whether I'm using a loop correctly and whether what I'm doing is possibl

    A do...while loop did come to my mind even before I noticed that part in your post. However, that may not be the best format now that I think of it.

    A do....while merely executes a condition at...
  2. Re: Not sure whether I'm using a loop correctly and whether what I'm doing is possibl

    It would be nice if you could show your code.

    How to repeatedly ask for a value until a value is reached is

    static Scanner console = new Scanner(System.in);
    int x = 0;

    while (x !=0)
    {...
Results 1 to 2 of 2