摘要: 任务三 #include <stdio.h> #include <stdlib.h> int main() { FILE *fp; char ch; int char_count = 0; fp = fopen("data4.txt", "r"); if (fp == NULL) { printf( 阅读全文
posted @ 2023-06-08 18:50 Anyazmh 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 任务四 #include <stdio.h> #include<string.h> #define N 100 typedef struct { char num[10]; // 学号 int s1; // 期末成绩 int s2; // 平时成绩 double sum; // 总评 char le 阅读全文
posted @ 2023-05-25 20:03 Anyazmh 阅读(4) 评论(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"); 阅读全文
posted @ 2023-05-04 19:35 Anyazmh 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 任务一 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("sizeof(int) = %d\n", siz 阅读全文
posted @ 2023-04-13 20:12 Anyazmh 阅读(8) 评论(0) 推荐(0) 编辑
摘要: task 1 #include <stdio.h> #include <stdlib.h> #include <time.h> #include <windows.h> #define N 80 void print_text(int line, int col, char text[]); // 阅读全文
posted @ 2023-03-30 20:44 Anyazmh 阅读(14) 评论(0) 推荐(0) 编辑
摘要: task 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( 阅读全文
posted @ 2023-03-16 22:13 Anyazmh 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 实验结论 task 1 task1-1 //打印一个字符小人 #include <stdio.h> int main() { printf(" o \n"); printf("<H> \n"); printf("I I \n"); printf(" o \n"); printf("<H> \n"); 阅读全文
posted @ 2023-03-02 21:06 Anyazmh 阅读(16) 评论(0) 推荐(0) 编辑