摘要: task4: 代码: #include <stdio.h> #include <stdlib.h> int main() { FILE *fp; int i=0; char ch; fp=fopen("data4.txt","r"); if(fp==NULL) { printf("fail to o 阅读全文
posted @ 2023-06-11 09:16 0波波茶0 阅读(5) 评论(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 阅读全文
posted @ 2023-05-31 20:05 0波波茶0 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 任务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 阅读全文
posted @ 2023-05-10 20:59 0波波茶0 阅读(5) 评论(0) 推荐(0) 编辑
摘要: task1_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("sizeof(int) = %d\n", siz 阅读全文
posted @ 2023-04-20 00:05 0波波茶0 阅读(7) 评论(0) 推荐(0) 编辑
摘要: task1: #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 pri 阅读全文
posted @ 2023-04-02 21:47 0波波茶0 阅读(16) 评论(0) 推荐(0) 编辑
摘要: #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)); for 阅读全文
posted @ 2023-03-22 20:22 0波波茶0 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 实验内容1 #include <stdio.h> int main() { printf(" o\n"); printf("<H>\n"); printf("I I\n"); printf(" o\n"); printf("<H>\n"); printf("I I\n"); return 0; } 阅读全文
posted @ 2023-03-03 16:35 0波波茶0 阅读(14) 评论(0) 推荐(0) 编辑