清如许啊
清如许啊
全部文章
分类
归档
标签
去牛客网
登录
/
注册
清如许啊的博客
全部文章
(共4篇)
题解 | 最小花费爬楼梯
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param cost int整型一维数组 * @param costLen int cost数组长度 * @return int整型 */ int minCostClimbingSt...
2025-04-28
0
31
题解 | #判断是元音还是辅音#
#include <stdio.h> int main() { char a; while (scanf("%c", &a) != EOF) { // 注意 while 处理多个 case // 64 位输出请用 printf...
2024-07-17
0
128
题解 | #小乐乐改数字#
#include <stdio.h> #include <math.h> int main() { int n=0; scanf("%d",&n); int num=1;//用来记录n一共有多少位 int m=n;//用来记录n的...
2024-07-17
0
168
题解 | #时间转换#
#include <stdio.h> int main() { int second; scanf("%d",&second); printf("%d %d %d\n",second/3600,second%360...
2024-01-22
0
171