24复试上机我必乱杀
24复试上机我必乱杀
全部文章
分类
归档
标签
去牛客网
登录
/
注册
24复试上机我必乱杀的博客
全部文章
(共22篇)
题解 | #吃糖果#
#include <stdio.h> int func(int N){ if(N==1||N==0)return 1; else{ return func(N-1)+func(N-2); } } int main(){ int N; scanf("%d",...
2024-02-07
1
194
题解 | #火星A+B#
#include <stdio.h>//这题真没必要死磕,看通过率话就知道这题根本不是入门水平 #include <string.h> void su(int arr[]){//将前25个素数(1,2,3,5,7...)赋给arr数组(从下标1开始) int k,m=1...
2024-02-06
3
279
首页
上一页
1
2
3
下一页
末页