基本編程筆試題

1.定義一個「數據類型」datatype,能處理字符型,整形,浮點型三種數據類型,給出構造函數。 #include"stdafx.h" #include<iostream> using namespace std; class datatype { enum { Inter, FLoat, Char }vartype; union { char c; int i; fl
相關文章
相關標籤/搜索