silverbullet4869

2024年6月17日

实验七 文件应用编程

摘要: 实验任务4 1 #include <stdio.h> 2 3 int main() { 4 int count = 0; 5 int ch; 6 FILE *fp; 7 8 fp = fopen("data4.txt", "r"); 9 if (fp == NULL) { 10 printf("fa 阅读全文

posted @ 2024-06-17 15:27 SilverBullet4869 阅读(40) 评论(0) 推荐(0) 编辑

2024年6月3日

C语言结构体、枚举编程练习

摘要: 实验任务4 1 #include <stdio.h> 2 #define N 10 3 4 typedef struct { 5 char isbn[20]; // isbn号 6 char name[80]; // 书名 7 char author[80]; // 作者 8 double sale 阅读全文

posted @ 2024-06-03 15:20 SilverBullet4869 阅读(38) 评论(0) 推荐(0) 编辑

2024年5月22日

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

摘要: 实验任务1 task1_1 1 #include <stdio.h> 2 #define N 5 3 4 void input(int x[], int n); 5 void output(int x[], int n); 6 void find_min_max(int x[], int n, in 阅读全文

posted @ 2024-05-22 20:04 SilverBullet4869 阅读(38) 评论(0) 推荐(0) 编辑

2024年5月13日

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

摘要: 实验任务1 task1_1 1 #include <stdio.h> 2 #define N 4 3 4 void test1() { 5 int a[N] = {1, 9, 8, 4}; 6 int i; 7 8 // 输出数组a占用的内存字节数 9 printf("sizeof(a) = %d\ 阅读全文

posted @ 2024-05-13 18:32 SilverBullet4869 阅读(50) 评论(0) 推荐(0) 编辑

2024年4月22日

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

摘要: 实验任务1 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #include <windows.h> 5 #define N 80 6 7 void print_text(int line, int col, char 阅读全文

posted @ 2024-04-22 19:41 SilverBullet4869 阅读(52) 评论(0) 推荐(0) 编辑

2024年4月8日

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

摘要: 实验任务1 1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<time.h> 4 5 #define N 5 6 7 int main() 8 { 9 int number; 10 int i; 11 12 srand(time(0)); 13 阅读全文

posted @ 2024-04-08 21:49 SilverBullet4869 阅读(28) 评论(0) 推荐(0) 编辑

2024年3月12日

实验1 C语言输入输出和简单程序编写

摘要: 实验任务1 1_1 1 #include<stdio.h> 2 int main() 3 { 4 printf(" O\n"); 5 printf("<H>\n"); 6 printf("I I\n"); 7 8 printf(" O\n"); 9 printf("<H>\n"); 10 print 阅读全文

posted @ 2024-03-12 22:14 SilverBullet4869 阅读(42) 评论(0) 推荐(0) 编辑

导航