摘要:
task4 #include <stdio.h> int main() { int count = 0; int ch; FILE *fp; fp = fopen("data4.txt", "r"); if (fp == NULL) { printf("fail to open file\n"); 阅读全文
摘要:
实验1_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); 阅读全文
摘要:
#include<stdio.h> #include<stdlib.h> int main() { printf(" o o\n"); printf("<H> <H>\n"); printf("I I I I\n"); system("pause"); return 0; } int main() 阅读全文