摘要: #include<stdio.h> int main(){ FILE *fp; int r=0,n=0; char c; fp=fopen("C:\\Users\\jhy12\\Desktop\\博客园文件\\data4.txt","r"); if(fp==NULL){ printf("fail t 阅读全文
posted @ 2024-12-30 21:13 井灏扬 阅读(5) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 double sales_price; // 售价 int sal 阅读全文
posted @ 2024-12-22 14:55 井灏扬 阅读(4) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #define N 4 #define M 2 void test1() { int x[N] = {1, 9, 8, 4}; int i; printf("sizeof(x) = %d\n", sizeof(x)); for (i = 0; i < N; ++ 阅读全文
posted @ 2024-11-10 22:34 井灏扬 阅读(3) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> char score_to_grade(int score); int main() { int score; char grade; while(scanf("%d", &score) != EOF) { grade = score_to_grade(scor 阅读全文
posted @ 2024-10-29 21:53 井灏扬 阅读(5) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define N1 397 #define N2 476 #define N3 21 int main() { int cnt; int random_majo 阅读全文
posted @ 2024-10-13 17:47 井灏扬 阅读(5) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> int main() { printf(" 0 \n"); printf("<H>\n"); printf("I I\n"); printf(" 0 \n"); printf("<H>\n"); printf("I I\n"); return 0; } #incl 阅读全文
posted @ 2024-10-02 13:06 井灏扬 阅读(25) 评论(1) 推荐(0) 编辑