摘要: 任务4 #include <stdio.h> int main(){ FILE *fp; fp = fopen("data4.txt", "r"); int n,c; if(fp == NULL) { printf("fail to open file\n"); return 1; } while( 阅读全文
posted @ 2023-06-11 21:52 郑之行 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 任务4 #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-31 21:52 郑之行 阅读(8) 评论(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 阅读全文
posted @ 2023-05-10 23:04 郑之行 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 任务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:41 郑之行 阅读(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[]); void p 阅读全文
posted @ 2023-03-30 17:34 郑之行 阅读(13) 评论(0) 推荐(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-16 17:36 郑之行 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 任务1 #include <stdio.h> int main() { printf(" O O \n"); printf("<H> <H>\n"); printf("I I I I\n"); return 0; } #include <stdio.h> int main() { printf(" 阅读全文
posted @ 2023-03-05 00:17 郑之行 阅读(15) 评论(0) 推荐(0) 编辑