bsdn_n
bsdn_n
全部文章
分类
归档
标签
去牛客网
登录
/
注册
bsdn_n的博客
全部文章
(共70篇)
题解 | #函数实现计算一个数的阶乘#
#include<stdio.h> long long x=1; int step(long long n) { x*=n; if(n==1)...
2022-08-06
0
288
题解 | #小乐乐走台阶#
#include<stdio.h>//来自一只菜鸡 int x=1; int step(int n) { if(n<=1) { &n...
2022-08-06
0
247
题解 | #牛牛的10类人#
#include<stdio.h> int num(int x) { int a=0,b=0,m=x; while(m) &n...
2022-08-06
2
280
题解 | #牛牛的四叶玫瑰数#
#include<stdio.h> int rose(int l,int r,int num) { for(int i=l;i<=r;i++) &n...
2022-08-06
1
311
题解 | #牛牛的替换#
#include<stdio.h> void my_strcpy(char s[],char a,char b,char c,char d,int n) { for(in...
2022-08-06
1
305
题解 | #牛牛的素数判断#
#include<stdio.h> int num(int n) { int b=0; for(int i=2;i<n;i++) &n...
2022-08-06
0
246
题解 | #大吉大利,今晚吃鸡#
#include<stdio.h> #include<math.h> int main() { int n; while(scanf("%d",&n)!...
2022-08-05
0
277
题解 | #兔子的序列#
#include<stdio.h>//感觉写的有点复杂,就为了写个函数。。凑合着看吧。。。 int num(int x) { int a=0; for(int&n...
2022-08-05
0
416
题解 | #[NOIP1999]回文数#
代码改了好多次,但是比较简单,不重新修了 #include<stdio.h> long long fun(long long M,int N)//转化进制 {if(N!=16) { if(M...
2022-08-05
0
313
题解 | #素数回文#
#include<stdio.h>//写两个函数,再写主函数就很方便 #include<math.h> long long huiwen(long t) { long long ...
2022-08-05
0
293
首页
上一页
1
2
3
4
5
6
7
下一页
末页