description
定義date類,表示由年、月、日構成的日期,定義其建構函式和析構函式,產生如樣例所示的輸出。input定義person類,包括乙個date類的物件成員表示其生日,乙個string的資料成員表示其名字。定義其建構函式和析構函式,產生如樣例所示的輸出。
第一行是乙個合法的日期;第二行是乙個無空白符的字串和乙個合法的日期。output
見樣例。sample input
1997101
tom 1997
1112
sample output
date 1997-10
-1 is created.
date 1997-11
-12 is created.
person tom was born at 1997-11
-12 is created.
person tom was born at 1997-11
-12 is erased.
date 1997-11
-12 is erased.
date 1997-10
-1 is erased.
int
main()
ac**
#include
#include
using
namespace std;
class
date
~date()
};class
person
~person()
};intmain()
OJ 2092 Problem A 老師與學生
定義person類,1.有乙個int型別屬性age和1個char型別屬性 分別為年齡和姓名。2.建構函式和析構函式,輸出如樣例所示的資訊。定義student類,是person類的子類 1.有乙個int型別屬性,是學生所在的班級號。2.建構函式與析構函式,輸出如樣例所示的資訊。定義teacher類,是...
山科OJ2222 乙個人的生日
description 定義date類,表示由年 月 日構成的日期,定義其建構函式和析構函式,產生如樣例所示的輸出。定義person類,包括乙個date類的物件成員表示其生日,乙個string的資料成員表示其名字。定義其建構函式和析構函式,產生如樣例所示的輸出。input 第一行是乙個合法的日期 第...
第十六周OJ平台Problem A 逆序輸出陣列
下面的程式,採用指標訪問的方式,從鍵盤給陣列a n 輸入n個資料 n小於100 然後對元素值按逆序存放後輸出。請補充完整下面的程式。include using namespace std const int n 100 int main int a n p,q cin n for p a p p 2...