摘要: task4 代码: #include <stdio.h> #include <ctype.h> int main() { char ch; FILE *fp; int n=0; fp = fopen("data4.txt", "r"); if(fp == NULL) { printf("fail t 阅读全文
posted @ 2023-06-08 19:02 赵祥宏 阅读(74) 评论(0) 推荐(0)
摘要: task4 代码: #include <stdio.h> #include<string.h> #include <stdlib.h> #define N 100 typedef struct { char num[10]; // 学号 int s1; // 期末成绩 int s2; // 平时成绩 阅读全文
posted @ 2023-05-28 20:30 赵祥宏 阅读(32) 评论(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"); for(p=x;p<x+N;++p) 阅读全文
posted @ 2023-05-09 17:12 赵祥宏 阅读(27) 评论(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-13 20:53 赵祥宏 阅读(57) 评论(0) 推荐(0)
摘要: 实验任务一: #include <time.h> #include <stdio.h> #include <stdlib.h> #include <windows.h> #define N 80 void print_text(int line,int col,char text[]); void 阅读全文
posted @ 2023-03-30 20:32 赵祥宏 阅读(64) 评论(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-16 20:09 赵祥宏 阅读(116) 评论(3) 推荐(0)
摘要: 实验任务1: #include <stdio.h> int main() { printf(" o\n"); printf("<H>\n"); printf("I I\n"); return 0; } 屏幕截图: #include <stdio.h> int main() { printf(" o\ 阅读全文
posted @ 2023-03-02 19:38 赵祥宏 阅读(44) 评论(0) 推荐(0)