摘要: #include <stdio.h> #include<stdlib.h> #include<string.h> #define N 5 #define M 80 int main() { char ch[M]; int ch_counts = 0,n=0; FILE *fp; fp = fopen 阅读全文
posted @ 2023-06-08 23:55 无舞物 阅读(14) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include<string.h> #define N 100 typedef struct { char num[10]; // 学号 int s1; // 期末成绩 int s2; // 平时成绩 double sum; // 总评 char level[ 阅读全文
posted @ 2023-05-25 17:46 无舞物 阅读(6) 评论(0) 推荐(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", x[i]) 阅读全文
posted @ 2023-05-04 17:32 无舞物 阅读(28) 评论(0) 推荐(0)
摘要: #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(int) 阅读全文
posted @ 2023-04-16 20:22 无舞物 阅读(18) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <stdlib.h> #include <time.h> #include <windows.h> #define N 80 void print_text(int line, int col, char text[]); // 函数声明 vo 阅读全文
posted @ 2023-03-31 16:59 无舞物 阅读(28) 评论(0) 推荐(0)
摘要: #include <stdio.h>//task2.1 #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-17 22:18 无舞物 阅读(21) 评论(0) 推荐(0)
摘要: #include <stdio.h>//task1.2 int main() { printf(" O O\n"); printf("<H> <H>\n"); printf("I I I I\n"); return 0; } #include <stdio.h>//task1 int main() 阅读全文
posted @ 2023-03-02 17:36 无舞物 阅读(26) 评论(0) 推荐(0)
摘要: #include <stdio.h> int main() { printf(" O \n"); printf("<H>\n"); printf("I I\n"); return 0; } 阅读全文
posted @ 2023-03-02 16:26 无舞物 阅读(18) 评论(0) 推荐(0)