拒绝内卷plus
拒绝内卷plus
全部文章
分类
归档
标签
去牛客网
登录
/
注册
拒绝内卷plus的博客
全部文章
(共5篇)
题解 | #数制转换#
#include <stdio.h> #include <string.h> int main() { int a, b; char n[50]; while (scanf("%d%s%d", &a,n ,&b) !...
2024-03-26
1
221
题解 | #Old Bill#
#include <stdio.h> int main() { int n; while (scanf("%d", &n) != EOF) { int x,y,z; scanf("%d %d %d&q...
2024-03-16
1
245
题解 | #简单密码#
#include <stdio.h> #include <string.h> int main() { char str[201]; while(1) { gets(str); if(strcmp(str, "...
2024-03-15
1
201
题解 | #Number Steps#
#include <stdio.h> int f1(int x,int y) { if(x%2==0) return x*2-2; return x*2-3; } int f2(int x,int y) { if(x%2==0) return x+...
2024-03-14
1
195
题解 | #吃糖果#
#include <stdio.h> int fun(int n) { if(n==1)return 1; if(n==2)return 2; return fun(n-1)+fun(n-2); } int main() { int n; wh...
2024-03-06
1
245