Maurice Tutor

(5)

$15/per page/Negotiable

About Maurice Tutor

Levels Tought:
Elementary,Middle School,High School,College,University,PHD

Expertise:
Algebra,Applied Sciences See all
Algebra,Applied Sciences,Biology,Calculus,Chemistry,Economics,English,Essay writing,Geography,Geology,Health & Medical,Physics,Science Hide all
Teaching Since: May 2017
Last Sign in: 398 Weeks Ago, 6 Days Ago
Questions Answered: 66690
Tutorials Posted: 66688

Education

  • MCS,PHD
    Argosy University/ Phoniex University/
    Nov-2005 - Oct-2011

Experience

  • Professor
    Phoniex University
    Oct-2001 - Nov-2016

Category > Computer Science Posted 26 Jul 2017 My Price 8.00

Concet.java

Provided is the class Time.java

Create an additional new class called Concet.java based on the diagram below.

(NO scanner inputs)

                      Concert

_______________________________________________

-name: String

-StartTime: Time

-endTime : Time

_________________________________________________

+ <<constructor>> Concert (n: String, start: Time, end : Time )

+ toString():String

__________________________________________________

Then

Create a class called ConcertApp.java .
This class includes the main method.
Inside the main method create an instance of Concert. Initialize it with values of your choice.
Print the newly created concert

(NO scanner inputs)

public class Time
{
   private int hours;
   private int minutes;
   private int seconds;

   public Time(int h, int m, int s)
   {
       setTime(h, m, s);
   }

   public Time()
   {
   }

   public void setHours(int h)
   {
       hours = ((h >= 0 && h < 24) ? h : 0);
   }

   public void setMinutes(int m)
   {
       minutes = ((m >= 0 && m < 60) ? m : 0);
   }

   public void setSeconds(int s)
   {
       seconds = ((s >= 0 && s < 60) ? s : 0);
   }

   public void setTime(int h, int m, int s)
   {
       setHours(h);
       setMinutes(m);
       setSeconds(s);
   }

   public String toMilitary()
   {
       return String.format("%02d:%02d:%02d", hours, minutes, seconds);
   }

   @Override
   public String toString()
   {
       return String.format("%d:%02d:%02d %s",
               (hours == 0 || hours == 12) ? 12 : hours % 12, minutes,
               seconds, (hours < 12) ? "AM" : "PM");
   }

}

Answers

(5)
Status NEW Posted 26 Jul 2017 06:07 PM My Price 8.00

Hel-----------lo -----------Sir-----------/Ma-----------dam----------- Â-----------  -----------Tha-----------nk -----------You----------- fo-----------r u-----------sin-----------g o-----------ur -----------web-----------sit-----------e a-----------nd -----------acq-----------uis-----------iti-----------on -----------of -----------my -----------sol-----------uti-----------on.-----------Ple-----------ase----------- pi-----------ng -----------me -----------on -----------cha-----------t I----------- am----------- on-----------lin-----------e o-----------r i-----------nbo-----------x m-----------e a----------- me-----------ssa-----------ge -----------I w-----------ill----------- be----------- ca-----------tch-----------

Not Rated(0)