牛客161598119号
牛客161598119号
全部文章
题解
归档
标签
去牛客网
登录
/
注册
牛客161598119号的博客
全部文章
/ 题解
(共97篇)
题解 | #小乐乐计算求和#
#include<stdio.h> int fc(int n)//定义一个算阶乘的函数 { return n==1?1:n*fc(n-1); } int main(void) { int n; scanf("%d",&n); int sum=0; ...
C
2021-12-15
1
378
题解 | #小乐乐算最高分#
#include<stdio.h> int main(void) { int n; scanf("%d",&n); int *scor=(int *)malloc(sizeof(int)*n); int max=0; for(int i=0...
C
2021-12-15
0
363
题解 | #小乐乐与字符串#
#include<stdio.h> int main(void) { char str[8001]; char t; gets(str);//获取字符串 int len=strlen(str);//调用strlen函数获取字符串的长度 long c...
C
2021-12-15
2
413
题解 | #小乐乐与序列#
#include<stdio.h> #include<stdlib.h> int cmp(const int *a,const int *b) { return *(int *)a-*(int *)b; } int main(void) { int n; ...
C
2021-12-15
0
457
题解 | #小乐乐走台阶#
/* 根据题意,小乐乐可以选择走一步或者走两步,则走到n步的方法数之和有两种情况 1、先按照某种方法走到第n-2阶,最后一次直接跨两阶 2、先按照某种方法走到第n-1阶,最后一次只跨一阶 也就是,最后到达n步的方法只有这两种,要么是跨一阶到达,要么是跨两阶到达 所以,假设走到第n阶所用的方法总数为f...
C
2021-12-14
8
434
题解 | #小乐乐改数字#
#include<stdio.h> int main(void) { int n; int a[9];//定义一个数组用于存放每位数字上是奇数还是偶数 int count=0;//定义一个count,用于对位数进行计数 int result=0; ...
C
2021-12-14
33
729
题解 | #小乐乐与欧几里得#
#include<stdio.h> long zdgys(long a,long b)//定义一个求最大公约数的函数 { long x=a%b; return x==0?b:zdgys(b,x);//如果a%b等于0,则b就是最大公约数,否则让b替换a,让a%b替换b继续...
C
2021-12-14
0
376
题解 | #小乐乐排电梯#
#include<stdio.h> int main(void) { int n,h; scanf("%d",&n); h=((n)/12)*4+2;//根据题意,每一趟需要4分钟,最后一趟仅需2分钟 printf("%d",h); ret...
C
2021-12-14
0
308
题解 | #小乐乐定闹钟#
#include<stdio.h> int main(void) { int hour,min,howmin; scanf("%d:%d %d",&hour,&min,&howmin);//按照格式输入三个数 hour=(hour+(how...
C
2021-12-14
35
898
题解 | #小乐乐求和#
#include<stdio.h> int main(void) { long long n;//注意到n的范围为1-1亿,用int类型既有可能会溢出,为了防止出现这种情况,采用long long类型 scanf("%d",&n); if(n%2==0) ...
C
2021-12-14
0
268
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页