Search:

Type: Posts; User: jps

Search: Search took 0.12 seconds.

  1. Re: Can I have an if statement inside a while loop? or something similar?

    I basically handed you an answer (of the many possible). Read over this link and utilize your favorite search engine on keywords "java loops".
    If you have questions after seeing the wealth of...
  2. Re: Can I have an if statement inside a while loop? or something similar?

    A basic do-while loop is one way to get something done to satisfy your conditions. The layout may resemble this:

    do {
    some thing correctly
    } while ( something was done wrong)

    If the...
Results 1 to 2 of 2