摘要: #include<stdio.h> #include<stdlib.h> int main(){ int num=0; char ch; FILE *fp; fp=fopen("data4.txt","r"); if(fp==NULL) {printf("fail\n"); return 1;} w 阅读全文
posted @ 2023-06-14 17:17 岁杪听风 阅读(5) 评论(0) 推荐(0) 编辑
摘要: task4 #include <stdio.h>#include <stdlib.h>#include<string.h>#define N 100 typedef struct { char num[10]; // 学号 int s1; // 期末成绩 int s2; // 平时成绩 double 阅读全文
posted @ 2023-05-31 20:00 岁杪听风 阅读(4) 评论(0) 推荐(0) 编辑
摘要: task1.1 代码:#include <stdio.h>#include <stdlib.h> #define N 4 int main(){ int x[N] = {1,9,8,4}; int i; int *p; //方式1:通过数组名和下标遍历输出数组元素 for(i=0;i<N;++i) 阅读全文
posted @ 2023-05-09 21:33 岁杪听风 阅读(4) 评论(0) 推荐(0) 编辑
摘要: task1.1 代码: #include <stdio.h>#include <stdlib.h>#define N 4 int main(){ int a[N] = {2,0,2,3}; char b[N] = {'2','0','2','3'}; int i; printf("sizeof(in 阅读全文
posted @ 2023-04-19 23:01 岁杪听风 阅读(14) 评论(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[]);void pr 阅读全文
posted @ 2023-04-05 23:49 岁杪听风 阅读(10) 评论(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-18 00:20 岁杪听风 阅读(20) 评论(0) 推荐(0) 编辑
摘要: task1 代码: //打印一个字符小人 #include <stdio.h>#include <stdlib.h>int main(){ printf(" o \n"); printf("<H>\n"); printf("I I\n"); system("pause"); return 0;} 运 阅读全文
posted @ 2023-03-04 09:58 岁杪听风 阅读(14) 评论(0) 推荐(0) 编辑