摘要: 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 int main() 7 { 8 struct Student 9 {10 char name[10];11 long id;12 char major[10];13 float score;14 float score1;15 };16 17 Student a,b,c;18 Student d,e,f;19 20 ofstream outstr("E:\\a.txt... 阅读全文
posted @ 2013-06-28 23:46 herizai 阅读(498) 评论(0) 推荐(0) 编辑