2018年6月3日
摘要: 1 #include 2 #include 3 #include 4 using namespace std; 5 6 struct SalaryInfo { 7 string id; 8 double salary; 9 }; 10 int main() { 11 SalaryInfo employee1 = { "S600",6000.0 }; ... 阅读全文
posted @ 2018-06-03 14:26 Pink.Pig 阅读(1446) 评论(0) 推荐(0) 编辑