摘要: 1 #include 2 #include 3 #include 4 #include 5 6 struct Student 7 { 8 char id[4]; 9 char name[10]; 10 int score; 11 }; 12 13 typedef struct User 14 { 15 char userName[20]; 16 char userPassword[10]; 17 }UserInfo; 18 19 void inputNameAndPassword(); 20 void logon(); ... 阅读全文
posted @ 2013-06-26 16:16 MingFung_Liu 阅读(1666) 评论(6) 推荐(2) 编辑