摘要: task4 #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> int main() { char ch; FILE* fp; int n = 0; fp = fopen("data4.txt", "r");//读出data4 ch = fgetc( 阅读全文
posted @ 2023-06-14 23:11 扎瀮 阅读(5) 评论(0) 推荐(0) 编辑
摘要: task4 #include <stdio.h> #include<string.h> #define N 100 typedef struct { char num[10]; // 学号 int s1; // 期末成绩 int s2; // 平时成绩 double sum; // 总评 char 阅读全文
posted @ 2023-06-01 00:20 扎瀮 阅读(9) 评论(1) 推荐(0) 编辑
摘要: task1.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-07 16:03 扎瀮 阅读(4) 评论(0) 推荐(0) 编辑
摘要: task1 #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-20 00:07 扎瀮 阅读(6) 评论(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[]);//函数声明 vo 阅读全文
posted @ 2023-04-03 16:46 扎瀮 阅读(16) 评论(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-20 16:40 扎瀮 阅读(13) 评论(0) 推荐(0) 编辑
摘要: task1-1 // 垂直方向上打印两个字符小人 #include<stdio.h> int main() { printf(" 0 \n"); printf("<H>\n"); printf("I I\n"); printf(" 0 \n"); printf("<H>\n"); printf("I 阅读全文
posted @ 2023-03-04 11:18 扎瀮 阅读(13) 评论(0) 推荐(0) 编辑