摘要: #include <stdio.h> #include <stdlib.h> int main() { FILE *fp1,*fp2,*fp3; char ch; fp1=fopen("data4.txt","r"); fp2=fp3=fp1; while((ch=getc(fp2))!=EOF) 阅读全文
posted @ 2023-06-08 20:10 克劳修斯 阅读(15) 评论(1) 推荐(0) 编辑
摘要: //task 4:#include <stdio.h> #include<string.h> #define N 100 typedef struct { char num[10]; // 学号 int s1; // 期末成绩 int s2; // 平时成绩 double sum; // 总评 ch 阅读全文
posted @ 2023-05-25 23:25 克劳修斯 阅读(15) 评论(1) 推荐(1) 编辑
摘要: #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+N;p++) pr 阅读全文
posted @ 2023-05-04 19:54 克劳修斯 阅读(25) 评论(1) 推荐(1) 编辑
摘要: #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("sozeof(int)=%d\n",sizeof(int)); printf("si 阅读全文
posted @ 2023-04-14 21:46 克劳修斯 阅读(26) 评论(1) 推荐(0) 编辑
摘要: #include <stdio.h> #include <stdlib.h> #include <time.h> #include <windows.h> #define N 80 void printf_text(int line,int col,char text[]); void printf 阅读全文
posted @ 2023-03-31 11:24 克劳修斯 阅读(22) 评论(1) 推荐(1) 编辑
摘要: #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define R1 586 #define R2 701 int main() { int number,i; srand(time(0)); for(i=1; 阅读全文
posted @ 2023-03-17 21:27 克劳修斯 阅读(34) 评论(1) 推荐(0) 编辑
摘要: #include <stdio.h> int main() { printf(" O \n"); printf("<H>\n"); printf("I I\n"); return 0; } #include <stdio.h> int main() { printf(" O \n"); printf 阅读全文
posted @ 2023-03-04 23:14 克劳修斯 阅读(12) 评论(0) 推荐(0) 编辑