摘要:
#include<unistd.h> #include<stdlib.h> #include<stdio.h> #include<string.h> #define BUFSIZE 200 int main() { FILE *read_fp; char buffer[BUFSIZE+1];/*用于 阅读全文
摘要:
1 #include <iostream> 2 #include <iomanip> 3 #include <string> 4 5 using namespace std; 6 7 struct Student 8 { 9 int num; 10 string name; 11 char sex; 阅读全文