fhahfoiah

导航

2024年12月25日 #

实验7_文件应用编程

摘要: task4 #include "stdio.h" int main() { FILE *fp; fp=fopen("D:\\快捷访问\\下载\\实验7数据文件及部分代码\\实验7数据文件及部分代码\\data4.txt","r"); int i=1,c=0; char ch; if(!fp) { p 阅读全文

posted @ 2024-12-25 11:06 蝶火丶梦萤 阅读(11) 评论(0) 推荐(0) 编辑

2024年12月23日 #

实验6_C语言结构体、枚举应用编程

摘要: task4 #include <stdio.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 double sales_price; // 售价 i 阅读全文

posted @ 2024-12-23 00:27 蝶火丶梦萤 阅读(5) 评论(0) 推荐(0) 编辑

2024年12月9日 #

实验5_C语言指针应用编程

摘要: 1.1找出数组a[N]中的最大最小值,并通过指针传递给主函数中的min和max变量;指向min和max #include <stdio.h> #define N 5 void input(int x[], int n); void output(int x[], int n); void find_ 阅读全文

posted @ 2024-12-09 00:31 蝶火丶梦萤 阅读(3) 评论(0) 推荐(0) 编辑

2024年11月8日 #

实验4_C语言数组应用编程

摘要: task1 #include <stdio.h> #define N 4 #define M 2 void test1() { int x[N] = {1, 9, 8, 4}; int i; // 输出数组x占用的内存字节数 printf("sizeof(x) = %d\n", sizeof(x)) 阅读全文

posted @ 2024-11-08 13:39 蝶火丶梦萤 阅读(15) 评论(0) 推荐(0) 编辑

2024年10月30日 #

实验3_C语言函数应用编程

摘要: task1:输入分数,返回等级有问题。当输入高于E等级对应的分数时,函数返回值将是从该等级到E等级全部等级,如输入9将返回BCDE。 #include <stdio.h> char score_to_grade(int score); // 函数声明 int main() { int score; 阅读全文

posted @ 2024-10-30 14:08 蝶火丶梦萤 阅读(8) 评论(0) 推荐(0) 编辑

2024年10月10日 #

实验2_C语言分支与循环基础应用编程

摘要: task1 #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; 阅读全文

posted @ 2024-10-10 16:57 蝶火丶梦萤 阅读(10) 评论(0) 推荐(0) 编辑

2024年9月28日 #

实验1_C语言输入输出和简单程序应用编程

摘要: #include <stdio.h> int main() { printf(" O \n"); printf("<H>\n"); printf("I I\n"); printf(" O \n"); printf("<H>\n"); printf("I I\n"); return 0; } #inc 阅读全文

posted @ 2024-09-28 00:37 蝶火丶梦萤 阅读(10) 评论(0) 推荐(0) 编辑