Question

In: Computer Science

import chapter6.date.SimpleDate; import java.util.Scanner; public class SimpleDateTestDefault { public static void main(String[] args) { Scanner stdin...

import chapter6.date.SimpleDate;
import java.util.Scanner;

public class SimpleDateTestDefault {
public static void main(String[] args) {
Scanner stdin = new Scanner(System.in);
SimpleDate d1 = new SimpleDate();
SimpleDate d2 = new SimpleDate(stdin.nextInt(), stdin.nextInt(), stdin.nextInt());
System.out.println(d1);
System.out.println(d2);
System.out.println(d1.before(d2));
System.out.println(d2.before(d1));
}
}

Implement SimpleDate class in chapter6.date package with the following attributes:

  1. day, (int type,  private)
  2. month, (int type,  private)
  3. year (int type,  private)

The class should have the following methods:

  1. a constructor with three parameters: year, month, and day
  2. a constructor with no parameters which initialize the date to 01/01/2000
  3. boolean before(SimpleDate another)
  4. int numOfDays(SimpleDate another), the number of days from this date to another. If another is later than this date, return a positive value, return 0 if equals, and return a negative value if another is before this date.
  5. String toString(): return the String representation in mm/dd/yyyy format.


Solutions

Expert Solution

Code to copy along with screenshots of code and output are provided.
Please refer to screenshots to understand the indentation of code.
If you have any doubts or issues. Feel free to ask in comments
Please give this answer a like, or upvote. This will be very helpful for me.
================================================================

Screenshots of "SimpleData.java":

Screenshots of "SimpleDateTestDefault.java"

Screenshots of Output :

Code to copy("SimpleDate.java"):

import java.util.*;
import java.text.ParseException;
import java.text.SimpleDateFormat;

public class SimpleDate {

   // integer variables
   int day;
   int month;
   int year;
  
   // constructor which takes three integer arguments
   SimpleDate(int day, int month, int year)
   {
      
   // initializing varaible according to arguments
   this.day = day;
   this.month = month;
   this.year = year;
     
   }
  
   // constructor with no parameters
   SimpleDate()
   {
       // initializing with default values
       this.day = 01;
       this.month = 01;
       this.year = 2000;
   }
  
   // method to return number of days from this to another
   int numberOfDays(SimpleDate another)
   {
       int n = 0;
      
       // creating date strings of SimpleDate
       String dateString = Integer.toString(this.month) + "/"+Integer.toString(this.day)+ "/"+Integer.toString(this.year);
   String date2String = Integer.toString(another.month) + "/"+Integer.toString(another.day)+ "/"+Integer.toString(another.year);
  
   // format of date
   String format = "MM/dd/yyyy";
  
   // new SimpleDateFormat object
   SimpleDateFormat sDateFormat = new SimpleDateFormat(format);
  
   try
   {
           // parsing dateString as into Date
       Date d1 = sDateFormat.parse(dateString);
      
       //parsing date2String as into Date
       Date d2 = sDateFormat.parse(date2String);
         
// calculating difference of days using getTime function          
       n = (int) (((d2.getTime()-d1.getTime())/(1000*60*60*24)));
       }
   catch (ParseException e)
   {
       // try catch to catch parsing exception
      
       }
      
       // return number of days
       return n;
   }
  
  
   // method to check if date is before another date
   boolean before(SimpleDate another)
   {
   boolean ret = false;  
      
   // if numberOfDays is positive then another date is after this date
   if(numberOfDays(another) > 0)
   {
   ret = true;  
   }
  
  
   // return
   return ret;
   }
  
   // method to convert this date to string
   public String toString()
   {
       // returning string
       return Integer.toString(this.month)+"/"+Integer.toString(this.day)+"/"+Integer.toString(this.year);
   }

}

Code to copy("SimpleDateTestDefault.java"):

import java.util.Scanner;

public class SimpleDateTestDefault {
  
  
   public static void main(String args[])
  
   {
  
  
   Scanner stdin = new Scanner(System.in);
  
   // creating SimpleDate instance using default values
   SimpleDate d1 = new SimpleDate();
  
  
   System.out.print("Enter day month and year : ");
  
   // creating SimpleDate instance using values entered by user
   SimpleDate d2 = new SimpleDate(stdin.nextInt(), stdin.nextInt(), stdin.nextInt());
  
   // converting date to strings
   System.out.println("d1: "+d1.toString());
   System.out.println("d2: "+d2.toString());
  
   // checking before(SimpleDate) function
   System.out.println("Is d1 before d2?: "+d1.before(d2));
   System.out.println("Is d2 before d1?: "+d2.before(d1));
  
   //checking numberOfDays(SimpleDate another) function
   System.out.print("Number of days between(d2 - d1):"+d1.numberOfDays(d2));
  
   }
  
}

==============XXXXXX==============================


Related Solutions

------------------------------------------------------------------------------------ import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner input =...
------------------------------------------------------------------------------------ import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner input = new Scanner(System.in); int result = 0; System.out.print("Enter the first number: "); int x = input.nextInt(); System.out.print("Enter the second number: "); int y = input.nextInt(); System.out.println("operation type for + = 0"); System.out.println("operation type for - = 1"); System.out.println("operation type for * = 2"); System.out.print("Enter the operation type: "); int z = input.nextInt(); if(z==0){ result = x + y; System.out.println("The result is " + result); }else...
import java.util.Stack; import java.util.Scanner; class Main { public static void main(String[] args)    {       ...
import java.util.Stack; import java.util.Scanner; class Main { public static void main(String[] args)    {        Stack<Integer> new_stack = new Stack<>();/* Start with the empty stack */        Scanner scan = new Scanner(System.in);        int num;        for (int i=0; i<10; i++){//Read values            num = scan.nextInt();            new_stack.push(num);        } System.out.println(""+getAvg(new_stack));    }     public static int getAvg(Stack s) {        //TODO: Find the average of the elements in the...
import java.util.Stack; import java.util.Scanner; class Main { public static void main(String[] args)    {       ...
import java.util.Stack; import java.util.Scanner; class Main { public static void main(String[] args)    {        Stack<Integer> new_stack = new Stack<>();/* Start with the empty stack */        Scanner scan = new Scanner(System.in);        int num;        for (int i=0; i<10; i++){//Read values            num = scan.nextInt();            new_stack.push(num);        }        int new_k = scan.nextInt(); System.out.println(""+smallerK(new_stack, new_k));    }     public static int smallerK(Stack s, int k) {       ...
import java.io.File; import java.io.FileNotFoundException; import java.util.Scanner; public class Exercise { public static void main(String[] args) {...
import java.io.File; import java.io.FileNotFoundException; import java.util.Scanner; public class Exercise { public static void main(String[] args) { Scanner input=new Scanner(System.in); int[] WordsCharsLetters = {0,1,2}; while(input.hasNext()) { String sentence=input.nextLine(); if(sentence!=null&&sentence.length()>0){ WordsCharsLetters[0] += calculateAndPrintChars(sentence)[0]; WordsCharsLetters[1] += calculateAndPrintChars(sentence)[1]; WordsCharsLetters[2] += calculateAndPrintChars(sentence)[2]; } else break; } input.close(); System.out.println("Words: " + WordsCharsLetters[0]); System.out.println("Characters: " + WordsCharsLetters[1]); System.out.println("Letters: " + WordsCharsLetters[2]); } static int[] calculateAndPrintChars(String sentence) { int[] WCL = new int[3]; String[] sentenceArray=sentence.split(" "); WCL[0] = sentenceArray.length; int letterCount=0; for(int i=0;i<sentence.length();i++) { if(Character.isLetter(sentence.charAt(i))) letterCount++; } WCL[1]...
Write program in Java import java.util.Scanner; public class Lab7Program { public static void main(String[] args) {...
Write program in Java import java.util.Scanner; public class Lab7Program { public static void main(String[] args) { //1. Create a double array that can hold 10 values    //2. Invoke the outputArray method, the double array is the actual argument. //4. Initialize all array elements using random floating point numbers between 1.0 and 5.0, inclusive    //5. Invoke the outputArray method to display the contents of the array    //6. Set last element of the array with the value 5.5, use...
what i have: import java.util.Scanner; public class examples1 { public static void main(String[] args) { Square...
what i have: import java.util.Scanner; public class examples1 { public static void main(String[] args) { Square shade = new Square(getside()); System.out.println("Your chooses are:"); System.out.println("\nCircle"); System.out.println("Triangle"); System.out.println("Rectangle"); System.out.println("Square"); boolean moreShapes = true; boolean userChoice = true; while(moreShapes) { Scanner shapes = new Scanner (System.in); System.out.println("\nWhat shape do you want:"); String yourShape = shapes.nextLine(); if (userChoice = shade != null) { shade.getSide(); } System.out.println("\nWhat are two size paramters of the shape you choose:"); String yourParameter = shapes.nextLine(); System.out.println("\nYour shape is: " +...
public static void main(String[] args) {        Scanner input = new Scanner(System.in);        String[]...
public static void main(String[] args) {        Scanner input = new Scanner(System.in);        String[] strings = new String[100];        for (int i = 0; i < strings.length; i++) {            System.out.println("Enter Strings: stop ");            strings[i]=input.nextLine();            if(strings[i].equalsIgnoreCase("stop"))                break;        }               MaxLength(strings);//here is the error    }    public static int MaxLength(String[] array) {        int max = array[0].length();       ...
import java.util.Scanner; public class Lab9Q3 { public static void main (String [] atgs) { double mass;...
import java.util.Scanner; public class Lab9Q3 { public static void main (String [] atgs) { double mass; double velocity; double totalkineticEnergy;    Scanner keyboard = new Scanner (System.in); System.out.println ("Please enter the objects mass in kilograms"); mass = keyboard.nextDouble();    System.out.println ("Please enter the objects velocity in meters per second: "); velocity = keyboard.nextDouble();    double actualTotal = kineticEnergy (mass, velocity); System.out.println ("Objects Kinetic Energy: " + actualTotal); } public static double kineticEnergy (double mass, double velocity) { double totalkineticEnergy =...
import java.util.Random; class Conversions { public static void main(String[] args) { public static double quartsToGallons(double quarts)...
import java.util.Random; class Conversions { public static void main(String[] args) { public static double quartsToGallons(double quarts) { return quarts * 0.25; } public static double milesToFeet(double miles) { return miles * 5280; } public static double milesToInches(double miles) { return miles * 63360; } public static double milesToYards(double miles) { return miles * 1760; } public static double milesToMeters(double miles) { return miles * 1609.34; } public static double milesToKilometer(double miles) { return milesToMeters(miles) / 1000.0; } public static double...
Consider this program: public class Main { public static void main(String[] args) { String s1 =...
Consider this program: public class Main { public static void main(String[] args) { String s1 = "hello"; String s2 = "hello"; String s3 = new String("hello"); System.out.println(s1 == s2); System.out.println(s2 == s3); System.out.println(s2.equals(s3)); } } When we run the program, the output is: true false true Explain why this is the output, using words and/or pictures.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT