摘要:
task4 #include<stdio.h> #include<stdlib.h> int main(){ FILE *fp; int count=0; fp=fopen("data4.txt","r"); if(fp==NULL){ printf("fail to open the file") 阅读全文
摘要:
实验任务1 #include<stdio.h> #include<stdlib.h> #include<time.h> #define N 5 int main() { int number; int i; srand(time(0)); for(i=0;i<N;++i);{ number=rand 阅读全文
摘要:
#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; } task1- 阅读全文