This document was uploaded by user and they confirmed that they have the permission to share
it. If you are author or own the copyright of this book, please report to us by using this DMCA
report form. Report DMCA
{ Definisi : WAKTU dibentuk oleh jam dan date } { *** ADT LAIN YANG DIPAKAI*****} USE JAM USE DATE { ********************** Definisi TYPE **********************} { Definisi TYPE WAKTU < Jam/Date > } TYPE WAKTU : < J : jam D : Date > typedef struct { int J; int D; } WAKTU; { ********************** Definisi METHOD **********************} Waktu MakeWaktu(Jam, Date); void BacaWaktu(Waktu* W); float GetJam(Waktu W); float GetDate(Waktu W); void TulisWaktu(Waktu W);