Search:

Type: Posts; User: rbread80

Search: Search took 0.18 seconds.

  1. Replies
    3
    Views
    3,094

    Re: Advancing day w/ if/else & switch statement

    After my tweaking, this is my entire updated code:


    public class MyDate {

    public int month, day, year;


    public MyDate(int month , int day, int year) {
  2. Replies
    3
    Views
    3,094

    Re: Advancing day w/ if/else & switch statement

    I've changed it some, but here is my new advanceByOneDay method


    public String advanceByOneDay(){
    /**
    * advances date by one day
    **/

    String result= " ";
  3. Replies
    3
    Views
    3,094

    Advancing day w/ if/else & switch statement

    I have a project due Monday for my Intro Java class and I really need to do well on it! I need to write a MyDate class that has 3 integers representing month, day & year. in it, I need a MyDate...
Results 1 to 3 of 3