Search:

Type: Posts; User: miketeezie

Search: Search took 0.07 seconds.

  1. Replies
    2
    Views
    1,731

    Feel like I'm overthinking this problem.

    I want to make a class that creates a rectangle:


    public class Rectangle
    {
    private double x; // x & y need to be the upper left corner of the rectangle
    private double y; // x & y need...
  2. Re: Help requested - testing a class with a tester class, no methods allowed.

    System.out.println(clock.getUSTime());


    That's it exactly! I didn't realize the compiler would allow you to put the all that into a print statement.

    My Tester class now verifies that my...
  3. Help requested - testing a class with a tester class, no methods allowed.

    I have an assignment where I am to test a class I've written by writing another class called Tester. Tester can have no instance variables or methods, everything has to be done in one constructor. ...
  4. Re: Java uberNoob, requesting help with simple loop issue

    Thank you guys so much. It's a little embarrassing - this is my first time to ever try to sit down and write any Java code, so I am definitely almost completely ignorant. I'm still trying to wrap...
  5. Java uberNoob, requesting help with simple loop issue

    Hi everyone. I am just starting out with Java, and have encountered this problem with a for loop. I'm not sure that's the ideal loop for this problem, but it's what I have right now.

    Here's the...
Results 1 to 5 of 5