zzfyupup
zzfyupup
全部文章
题解
归档
标签
去牛客网
登录
/
注册
zzfyupup的博客
全部文章
/ 题解
(共2篇)
题解 | #超级圣诞树#
来自专栏
///好难嗷!不会呜呜呜 #include <stdio.h> int arr[500][800] = { {0, 0, 1, 0, 0}, {0, 1, 0, 1, 0}, {1, 0, 1, 0, 1} }; int main() { int length = 3; ...
C
C
双循环
递归
2022-06-06
1
569
题解 | #小乐乐与进制转换#
来自专栏
#include<stdio.h> void six(int x) { if(x>5) { six(x/6); } printf("%d",x%6); } int main() { int n=0; scanf("%d...
C
C#
递归
递归
2022-05-31
1
299