liuyf9096
liuyf9096
全部文章
分类
归档
标签
去牛客网
登录
/
注册
liuyf9096的博客
全部文章
(共4篇)
题解 | 牛牛的时钟
#include <stdio.h> #include <stdlib.h> // write your code here...... typedef struct Clock myclock_t; typedef struct Clock { int hour;...
2026-03-13
0
12
题解 | 牛牛的书
#include <stdio.h> #include <string.h> #include <stdlib.h> // write your code here...... typedef struct book { char name[100]; ...
2026-03-13
0
11
题解 | KiKi设计类继承
#include <stdio.h> // write your code here...... typedef struct shape { int x; int y; } shape_t; typedef struct Rectangle rectangle_t...
2026-03-13
1
14
题解 | KiKi定义电子日历类
#include <stdio.h> // write your code here...... typedef struct date date_t; typedef struct date { int year; int month; int day; ...
2026-03-13
1
10