摘要: task4 源代码 #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; 阅读全文
posted @ 2023-06-15 11:33 17-邱远鹏 阅读(2) 评论(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-06-01 10:25 17-邱远鹏 阅读(10) 评论(0) 推荐(0) 编辑
摘要: task1 源代码 #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(" 阅读全文
posted @ 2023-05-11 13:13 17-邱远鹏 阅读(5) 评论(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-20 08:33 17-邱远鹏 阅读(7) 评论(0) 推荐(0) 编辑
摘要: task1 源代码 #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-06 09:15 17-邱远鹏 阅读(12) 评论(0) 推荐(0) 编辑
摘要: task1 源代码 #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-22 20:17 17-邱远鹏 阅读(12) 评论(0) 推荐(0) 编辑
摘要: task1 源代码 1.1 #include <stdio.h> #include <stdlib.h> int main() { printf(" O \n"); printf("<H> \n"); printf("I I \n"); printf(" O \n"); printf("<H> \n 阅读全文
posted @ 2023-03-06 20:58 17-邱远鹏 阅读(19) 评论(0) 推荐(0) 编辑