码迷,mamicode.com
首页 >  
搜索关键字:sets    ( 1333个结果
PTA乙级 (1042 字符统计 (20分))
1042 字符统计 (20分) https://pintia.cn/problem-sets/994805260223102976/problems/994805280817135616 #include <iostream> #include <cstdio> #include <cmath> # ...
分类:其他好文   时间:2020-01-26 13:15:57    阅读次数:48
递归求简单交错幂级数的部分和
https://pintia.cn/problem-sets/12/problems/354 1 double fn(double x, int n) 2 { 3 double ret; 4 double item, flag; 5 6 if (n == 1) 7 { 8 ret = x; 9 } ...
分类:其他好文   时间:2020-01-25 22:18:42    阅读次数:150
递归求Fabonacci数列
https://pintia.cn/problem-sets/12/problems/356 1 int f(int n) 2 { 3 int ret; 4 5 if (n == 0) 6 { 7 ret = 0; 8 } 9 else if (n == 1) 10 { 11 ret = 1; 12 ...
分类:其他好文   时间:2020-01-25 22:06:04    阅读次数:76
递归计算Ackermenn函数
https://pintia.cn/problem-sets/12/problems/355 1 int Ack(int m, int n) 2 { 3 int ret; 4 5 if (m == 0) 6 { 7 ret = n + 1; 8 } 9 else if (n == 0 && m > ...
分类:其他好文   时间:2020-01-25 22:02:25    阅读次数:96
递归实现指数函数
https://pintia.cn/problem-sets/12/problems/353 1 double calc_pow(double x, int n) 2 { 3 double ret; 4 5 if (n == 0) 6 { 7 ret = 1; 8 } 9 else 10 { 11 ...
分类:其他好文   时间:2020-01-25 20:51:22    阅读次数:90
PAT乙级1020
1020 月饼 (25分) 题目地址:https://pintia.cn/problem sets/994805260223102976/problems/994805301562163200 月饼是中国人在中秋佳节时吃的一种传统食品,不同地区有许多不同风味的月饼。现给定所有种类月饼的库存量、总售价 ...
分类:其他好文   时间:2020-01-25 20:50:13    阅读次数:76
判断满足条件的三位数
https://pintia.cn/problem-sets/12/problems/351 1 int search(int n) 2 { 3 int count = 0; 4 int num_sqrt; //平方根的整数部分 5 int single, ten, hundred; 6 for ( ...
分类:其他好文   时间:2020-01-25 20:48:27    阅读次数:241
递归求阶乘和
https://pintia.cn/problem-sets/12/problems/352 1 double fact(int n) 2 { 3 double product; 4 if (n == 0) 5 { 6 product = 1; 7 } 8 else 9 { 10 product = ...
分类:其他好文   时间:2020-01-25 20:44:03    阅读次数:101
PAT乙级1019
1019 数字黑洞 (20分) 题目地址:https://pintia.cn/problem sets/994805260223102976/problems/994805302786899968 给定任一个各位数字不完全相同的 4 位正整数,如果我们先把 4 个数字按非递增排序,再按非递减排序,然 ...
分类:其他好文   时间:2020-01-24 23:41:29    阅读次数:83
MySQL, mysql命令注释
MySQL,mysql命令注释/opt/mysql/bin/mysql-B,--batchDon‘tusehistoryfile.Disableinteractivebehavior.(Enables--silent.)--bind-address=nameIPaddresstobindto.绑定IP地址--character-sets-dir=nameDirectoryforcharacters
分类:数据库   时间:2020-01-24 15:53:25    阅读次数:133
1333条   上一页 1 ... 11 12 13 14 15 ... 134 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!