绘海纳百川
绘海纳百川
全部文章
分类
归档
标签
去牛客网
登录
/
注册
绘海纳百川的博客
全部文章
(共7篇)
题解 | #首字母大写#
#include <stdio.h> #include <string.h> #define N 100 char l2u(char c){ //将小写装换成大写 if(c>='a'&&c<='z') return (c-('a'-'...
2023-03-15
1
400
题解 | #与7无关的数#
#include <stdio.h> int isRelate7(int n){ //判断是否是与7无关的数 if(n%7==0){ return 1; } if(n%10==7||n/10==7) return 1; ...
2023-03-15
0
291
题解 | #skew数#
#include <stdio.h> #include <math.h> #include <string.h> #define N 32 int main() { int num[N]; char c[N]; int dnum; /...
2023-03-15
0
297
题解 | #大整数的因子#
#include <stdio.h> #include <string.h> #define N 31 int main() { char c[N]; //存放大数 int length; //记录数据长度 int remain; //记录余...
2023-03-15
0
341
题解 | #最大序列和#
#include <stdio.h> #define N 1000000 #define MIN -1000000 int main() { int dp[N]; //存放加上当前元素的最大子序列和 int num[N]={0}; //存放序列元素 int...
2023-03-14
0
362
题解 | #中位数#
#include <stdio.h> #define N 10000 void bubbleSort(int a[],int n){ //冒泡排序 int temp; for(int i=n-1;i>0;i--) for(int j=0;j&l...
2023-03-08
1
426
题解 | #密码翻译#
#include <stdio.h> #include <string.h> #define N 80 int main() { char c[N]; gets(c); //接收字符串 for(int i;c[i];i++){ i...
2023-03-08
0
289