Yh-c-learning

导航

 

2026年6月16日

摘要: 实验任务4 源代码: #include <stdio.h> #define N 10 typedef struct { char isbn[20]; char name[80]; char author[80]; double sales_price; int sales_count; } Book 阅读全文
posted @ 2026-06-16 23:02 葛益豪 阅读(6) 评论(0) 推荐(0)
 

2026年6月3日

摘要: 实验任务1 源代码1-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, int 阅读全文
posted @ 2026-06-03 01:12 葛益豪 阅读(10) 评论(0) 推荐(0)
 

2026年5月5日

摘要: 实验任务1 源代码: 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组x占用的内存字节数 10 printf("siz 阅读全文
posted @ 2026-05-05 15:30 葛益豪 阅读(9) 评论(0) 推荐(0)
 

2026年4月21日

摘要: 实验任务1 源代码: 1 #include <stdio.h> 2 3 char score_to_grade(int score); // 函数声明 4 5 int main() { 6 int score; 7 char grade; 8 9 while(scanf("%d", &score) 阅读全文
posted @ 2026-04-21 23:08 葛益豪 阅读(8) 评论(0) 推荐(0)
 

2026年4月6日

摘要: 实验任务1: 源代码: 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #define N 5 5 int main() { 6 int number; 7 int i; 8 srand(time(0)); // 以当 阅读全文
posted @ 2026-04-06 21:47 葛益豪 阅读(9) 评论(0) 推荐(0)
 

2026年4月4日

摘要: https://www.cnblogs.com/Yh-c-learning 阅读全文
posted @ 2026-04-04 07:28 葛益豪 阅读(8) 评论(0) 推荐(0)
 

2026年3月19日

摘要: task1-1.c(竖直2个小人) 源代码: 1 #include<stdio.h> 2 #include<stdlib.h> 3 int main() 4 { 5 6 printf(" o \n"); 7 printf(" <H>\n"); 8 printf(" I I\n"); 9 10 pri 阅读全文
posted @ 2026-03-19 17:07 葛益豪 阅读(15) 评论(0) 推荐(0)