Write a class for each of the following specifications. In each case, include a constructor that set each member values to 0 and a member method named showdata() that can be used to display member values.
1. A class named TIME that has integer data members named SECS, MINS, and HOURS.
2. A class named TRIANGLE that has integer data members LENGTH and WIDTH.
3. A class named STUDENT that has string data members named NAME, ADDRESS and COURSE and a floating point data member named CPA.
Jawapan untuk soalan 1.
class TIME {
private int SECS, MINS, HOURS;
TIME() {
SECS= MINS= HOURS=0;
}
public showdata() {
System.out.println("Second="+SECS);
System.out.println("Minute="+MINS);
System.out.println("Hour="+HOURS);
}
}
UML untuk class TIME adalah spt berikut:
Subscribe to:
Post Comments (Atom)
Cara download Installer windows 10 dalam format ISO
1. Jika anda bercadang untuk download windows 10 melalui website rasmi windows - pilihan untuk download dalam format ISO tidak di berikan. ...
-
ANSWERS TO CHAPTER EXERCISES (CHAPTER 8) Review Questions 1. List and describe various types of output, including technolog...
-
Based on real life scenario on any local company/ organization which you are very familiar, define the problem that could be addressed thr...
-
A. Response to the following statements by circling either T (TRUE) or F (FALSE). [10M] I. 1. Java enables users...
No comments:
Post a Comment