摘要: 实验任务4 程序源码 #include <stdio.h> #include <ctype.h> int main() { FILE *fp; char ch; int count = 0; fp = fopen("data4.txt", "r"); while ((ch = fgetc(fp)) 阅读全文
posted @ 2023-06-15 12:56 谈伊敉 阅读(10) 评论(1) 推荐(0) 编辑
摘要: 实验任务4程序源码#include <stdio.h> #include <string.h> #define N 100 typedef struct { char num[10]; // 学号 int s1; // 期末成绩 int s2; // 平时成绩 double sum; // 总评 c 阅读全文
posted @ 2023-06-01 08:46 谈伊敉 阅读(7) 评论(1) 推荐(0) 编辑
摘要: 实验任务一 #include <stdio.h> #define N 4 int main() { int x[N] = {1, 9, 8, 4}; int i; int *p; // 方式1:通过数组名和下标遍历输出数组元素 for (i = 0; i < N; ++i) printf("%d", 阅读全文
posted @ 2023-05-11 14:58 谈伊敉 阅读(10) 评论(1) 推荐(0) 编辑
摘要: 实验任务1 程序源码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) = 阅读全文
posted @ 2023-04-20 08:41 谈伊敉 阅读(9) 评论(1) 推荐(0) 编辑
摘要: 实验任务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-04-06 09:27 谈伊敉 阅读(12) 评论(1) 推荐(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)); 阅读全文
posted @ 2023-03-23 00:18 谈伊敉 阅读(9) 评论(1) 推荐(0) 编辑
摘要: 实验任务1 task1-1.c 程序源码 #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 21:06 谈伊敉 阅读(9) 评论(0) 推荐(0) 编辑