摘要: 任务四 #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) { printf("fa 阅读全文
posted @ 2023-06-14 23:33 到底到了 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 任务四 #include <stdio.h> #include <string.h> #define N 100 typedef struct { char num[10]; int s1, s2; double sum; char level[10]; } STU; int fun(STU a[] 阅读全文
posted @ 2023-06-01 14:25 到底到了 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 一. 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) printf("%d", x[i]); printf("\n"); 阅读全文
posted @ 2023-05-10 22:13 到底到了 阅读(3) 评论(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", sizeof( 阅读全文
posted @ 2023-04-19 23:50 到底到了 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 1.实验任务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[]); void p 阅读全文
posted @ 2023-04-05 16:57 到底到了 阅读(14) 评论(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(time(0) 阅读全文
posted @ 2023-03-20 23:30 到底到了 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 1.实验任务1 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 阅读全文
posted @ 2023-03-06 23:13 到底到了 阅读(23) 评论(0) 推荐(0) 编辑