摘要:
task4 #include <stdio.h> #include<stdlib.h> int main(){ FILE *fp; fp = fopen("E:\c++实验\data4.txt", "r"); if (!fp) { printf("fail to open the file"); s 阅读全文
摘要:
task1.1 #include <stdio.h> #define N 5 void input(int x[], int n); void output(int x[], int n); void find_min_max(int x[], int n, int *pmin, int *pmax 阅读全文