Search:

Type: Posts; User: dean_martin

Search: Search took 0.08 seconds.

  1. [SOLVED] Re: Could someone please help me figure out my homework please

    if (totalSize <=){
    System.out.println();

    }

    Here is what's missing
    (totalSize <= 100)

    It should look something like this:
  2. [SOLVED] Re: Could someone please help me figure out my homework please

    There is probably a Math method that does this for you, but this is faster for me than looking it up.

    int perimeter = (width + height * 2);
    int size = perimeter + length;

    There are some...
  3. [SOLVED] Re: Could someone please help me figure out my homework please

    1.You can reuse the scanner after declaring it once, because you are using it for int variables only.

    If (hypothetically)you needed to get a char or string, you need a char or string scanner. You...
  4. [SOLVED] Re: Could someone please help me figure out my homework please

    Pardon my duplication. I didn't refresh for awhile so I didn't see you already answered.
  5. [SOLVED] Re: Could someone please help me figure out my homework please

    Here is part 1:



    public class OddorEven {

    /**
    * @param args the command line arguments
    */
    public static void main(String[] args) {
Results 1 to 5 of 5