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
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
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
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
1019 数字黑洞 (20分) 题目地址:https://pintia.cn/problem sets/994805260223102976/problems/994805302786899968 给定任一个各位数字不完全相同的 4 位正整数,如果我们先把 4 个数字按非递增排序,再按非递减排序,然 ...
分类:
其他好文 时间:
2020-01-24 23:41:29
阅读次数:
83
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