gzzeason
gzzeason
全部文章
分类
归档
标签
去牛客网
登录
/
注册
gzzeason的博客
全部文章
(共16篇)
题解 | 小乐乐求和
const rl = require("readline").createInterface({ input: process.stdin }); rl.on("line", (input) => { //方案一失败,栈溢出了 // ...
2025-06-08
0
13
题解 | 牛牛学立体
const rl = require("readline").createInterface({ input: process.stdin }); rl.on("line", (input) => { inputs = input.split(...
2025-06-08
0
22
题解 | 计算机内存
const rl = require("readline").createInterface({ input: process.stdin }); rl.on("line", (input) => { number = Math.floor(p...
2025-06-08
0
23
题解 | 疫情死亡率
const rl = require("readline").createInterface({ input: process.stdin }); rl.on("line", (input) => { let inputs = input.sp...
2025-06-07
0
14
题解 | 向下取整
function _floor(number) { return parseInt(number.toString());}
2025-06-03
0
20
题解 | 对象属性键名
<!-- 检索返回Object实例属性。方法一,Object.keys(object),方法二,for key in object,keys.push(key),方法三,Object.getOwnPropertyNames(object);。通过是否包含原型链属性和是否包含不可枚举属性进行区别...
2025-06-02
0
19
首页
上一页
1
2
下一页
末页