摘要: task4.c #include<stdio.h> int main(){ int num=0; char ch; FILE *fp; fp=fopen("D:\data4.txt","r"); if(fp==NULL) {printf("fail\n"); return 1;} while(!fe 阅读全文
posted @ 2023-06-14 00:41 陈宏琴 阅读(4) 评论(0) 推荐(0) 编辑
摘要: task4.c #include <stdio.h> #include<string.h> #define N 100 typedef struct { char num[10]; int s1; int s2; double sum; char level[10]; } STU; int fun( 阅读全文
posted @ 2023-05-31 14:00 陈宏琴 阅读(9) 评论(0) 推荐(0) 编辑
摘要: task1-1.c #include<stdio.h> #define N 4 int main() { int x[N]={1,9,8,4}; int i; int *p; for(i=0;i<N;++i) printf("%d",x[i]); printf("\n"); for(p=x;p<x+ 阅读全文
posted @ 2023-05-09 13:28 陈宏琴 阅读(6) 评论(0) 推荐(0) 编辑
摘要: task1-1.c 代码 #include <stdio.h> #define N 4 int main() { int a[N] = {2, 0, 2, 3}; char b[N] = {'2', '0', '2', '3'}; int i; printf("sizeof(int) = %d\n" 阅读全文
posted @ 2023-04-15 17:49 陈宏琴 阅读(3) 评论(0) 推荐(0) 编辑
摘要: task1.c 代码 #include<stdio.h> #include<stdlib.h> #include<time.h> #include<windows.h> #define N 80 void print_text(int line,int col,char text[]); void 阅读全文
posted @ 2023-04-02 16:54 陈宏琴 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 1 代码: #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define R1 586 #define R2 701 int main() { int number; int i; srand( time(0 阅读全文
posted @ 2023-03-19 16:16 陈宏琴 阅读(11) 评论(0) 推荐(0) 编辑
摘要: test1.c 代码 #include<stdio.h> int main() { printf("O\n"); printf("<H>\n"); printf("I I\n"); return 0; } 结果 代码 #include<stdio.h> #include<stdlib.h> int 阅读全文
posted @ 2023-03-04 19:29 陈宏琴 阅读(13) 评论(0) 推荐(0) 编辑