摘要: task4 #include<stdio.h> #include<string.h> #include<stdlib.h> int main() { FILE *fp; char str[100]; int i,k=0,flag; while((fp=fopen("data4.txt","r"))= 阅读全文
posted @ 2023-06-14 15:00 陈忆安 阅读(3) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include<string.h> #define N 100 typedef struct { char num[10]; // 学号 int s1; // 期末成绩 int s2; // 平时成绩 double sum; // 总评 char level[ 阅读全文
posted @ 2023-05-26 10:31 陈忆安 阅读(12) 评论(0) 推荐(0) 编辑
摘要: task1 `程序源码 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 阅读全文
posted @ 2023-05-10 19:25 陈忆安 阅读(2) 评论(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", 阅读全文
posted @ 2023-04-20 08:59 陈忆安 阅读(3) 评论(0) 推荐(0) 编辑
摘要: task1 实验源码 #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-05 13:25 陈忆安 阅读(8) 评论(0) 推荐(0) 编辑
摘要: task1 程序源码 #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( t 阅读全文
posted @ 2023-03-18 10:25 陈忆安 阅读(14) 评论(0) 推荐(0) 编辑
摘要: text1 程序源码 //打印一个字符小人 #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" 阅读全文
posted @ 2023-03-05 20:28 陈忆安 阅读(21) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/cjy-00686/ 阅读全文
posted @ 2023-03-05 19:46 陈忆安 阅读(2) 评论(0) 推荐(0) 编辑