Python_zhang
Python_zhang
全部文章
题解
归档
标签
去牛客网
登录
/
注册
Python_zhang的博客
全部文章
/ 题解
(共84篇)
题解 | #参数解析#
#include <string.h> //fgets获取后用top+ wordlen确定参数长度,截取后给参数,最多四个参数 int main() { char str[1000] = {'\0'}; fgets(str, 1000, stdin); in...
C
2022-01-18
0
392
题解 | #计算日期到天数转换#
#include <stdio.h> #include <string.h> int main() { int monthinfo[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; int yea...
C
2022-01-17
14
536
题解 | #查找输入整数二进制中1的个数#
#include <stdio.h> #include <string.h> //多项式分解 // x= an 2^n+...a2 2^2+ a1 2^1+ a0 2^0 // x%2 =a0 x/=2 int main(){ int n; while(scanf("%d",...
C
2022-01-17
0
253
题解 | #放苹果#
#include <stdio.h> #include <string.h> //1.至少有一个空盘fm,n = fm,n-1 //2.一个空盘都没有fm,n = fm-n,n; //m个果放1个盘子 1种 //0个果放n个盘子 1钟 int f(int m, int n...
C
2022-01-17
0
360
题解 | #查找组成一个偶数最接近的两个素数#
#include <stdio.h> #include <string.h> #include <math.h> // p // A是素数P-A也是素数 // A from 2 to p/2 step 2? int isprime(int n); int main...
C
2022-01-17
0
340
题解 | #截取字符串#
strncpy #include <stdio.h> #include <string.h> int main(){ char str[100]; int k; while(scanf("%s",str)!=EOF){ scanf("%d",&k); ...
C
2022-01-17
0
265
题解 | #迷宫问题#
DFS #include <stdio.h> #include <string.h> #include <stdlib.h> typedef struct pointinfo { int set; int row; int col; ...
C
2022-01-17
0
490
题解 | #完全数计算#由一次错误 的回答推导欧拉公式
本来是遍历到根号n,后来想改进到再去除2的倍数 验证 6因子 1,6 2,3 那么12因子 (1,12 2,6) (2,6 4,3) 这样因子和是3倍 但是12因子 1,12 2,6 3,4 那么2,6重复了 结论错误 为什么? 猜测可能是因为6是2的倍数所以会再翻倍时导致因子有重复 a不是...
C
数学
2022-01-14
2
567
题解 | #完全数计算#
#include <stdio.h> #include <string.h> #include <math.h> //参考素数的计算吧,主要是用sqrt n减少循环次数 int is_total_num(int n); int main() { int ...
C
2022-01-14
1
565
题解 | #求最小公倍数#当前最具体全面的数学讲解了吧
#include <stdio.h> #include <string.h> // 辗转相除最大公约数a=bq+c => (a,b)=(b,c) // a b t=a%b // 12 18 12 // 18 12 6 // 12 6 0 // 6 0 // 12...
C
2022-01-14
0
393
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页