摘要: 实验任务四 程序源代码 #include <stdio.h> #include <stdlib.h> int main() { FILE* fp; int i = 0; char ch; fp = fopen_s(&fp,"data4.txt", "r"); if (fp == NULL) { pr 阅读全文
posted @ 2023-06-15 11:14 &YT 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 实验任务4 程序源代码 #include<stdio.h> #include<string.h> #include<stdlib.h> #define N 100 typedef struct{ char num[10]; int s1; int s2; double sum; char level 阅读全文
posted @ 2023-05-31 13:40 &YT 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 试验任务1_1 程序源代码 #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) prin 阅读全文
posted @ 2023-05-08 23:09 &YT 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 试验任务1_1.c #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", s 阅读全文
posted @ 2023-04-19 19:27 &YT 阅读(8) 评论(0) 推荐(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-03 17:54 &YT 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 实验任务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( t 阅读全文
posted @ 2023-03-18 14:59 &YT 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 实验任务1 程序源码 // 打印;一个字符小人 #include <stdio.h> int main() { printf(" 0 0 \n"); printf("<H> <H>\n"); printf("I I I I\n"); return 0; } 运行截图 实验任务2 程序源码 // 1+ 阅读全文
posted @ 2023-03-05 11:52 &YT 阅读(33) 评论(0) 推荐(0) 编辑