喜欢ctrl的cxk
喜欢ctrl的cxk
全部文章
分类
js(3)
未归档(3)
自建站(8)
随笔(5)
题解(4)
归档
标签
去牛客网
登录
/
注册
麦芽雪冷萃
冷的咖啡 我清醒着 一再续杯
全部文章
(共2篇)
C++统计每个月兔子的总数
#include <bits/stdc++.h> using namespace std; int func(int n) { return n<3 ? 1 : func(n-1)+func(n-2); } int main() { ios::sync_with...
C++
华为机试
2021-01-04
17
1644
C++求最大连续bit数
#include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0), cout.tie(0); int n; while(ci...
C++
华为机试
2021-01-04
1
616