摘要: 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-11 12:56 战①柔 阅读(7) 评论(0) 推荐(0) 编辑
摘要: task4 源代码 #include <stdio.h> #include<string.h> #define N 100 typedef struct { char num[10]; // 学号 int s1; // 期末成绩 int s2; // 平时成绩 double sum; // 总评 c 阅读全文
posted @ 2023-05-26 21:17 战①柔 阅读(6) 评论(0) 推荐(0) 编辑
摘要: task1 源代码1—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) print 阅读全文
posted @ 2023-05-05 22:33 战①柔 阅读(13) 评论(0) 推荐(0) 编辑
摘要: TASK 1 源代码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(int) 阅读全文
posted @ 2023-04-15 12:58 战①柔 阅读(11) 评论(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[]); vo 阅读全文
posted @ 2023-04-02 14:32 战①柔 阅读(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(ti 阅读全文
posted @ 2023-03-20 17:01 战①柔 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 实验任务1 //打印一个字符小人 #include <stdio.h> int main() { printf(" o o \n"); printf("<H> <H>\n"); printf("I I I I\n"); return 0; } 实验任务2 //1+2+3+...+n //用数学归纳法 阅读全文
posted @ 2023-03-03 17:52 战①柔 阅读(11) 评论(0) 推荐(0) 编辑