1033 旧键盘打字 (20分) https://pintia.cn/problem-sets/994805260223102976/problems/994805288530460672 字母的大小写转换:(头文件:#include <cctype>) 小写转大写:toupper() 大写转小写: ...
分类:
其他好文 时间:
2020-01-27 21:51:52
阅读次数:
80
1021 个位数统计 (15分) 题目地址:https://pintia.cn/problem sets/994805260223102976/problems/994805300404535296 输入格式 每个输入包含 1 个测试用例,即一个不超过 1000 位的正整数 N。 输出格式: 对 N ...
分类:
其他好文 时间:
2020-01-26 22:29:11
阅读次数:
67
https://pintia.cn/problem-sets/12/problems/357 这个题目对于理解递归很有帮助,递归第一个结束的程序是出口。 1 void dectobin(int n) 2 { 3 if (n <= 1) 4 { 5 printf("%d", n); 6 } 7 els ...
分类:
其他好文 时间:
2020-01-26 16:00:06
阅读次数:
51
https://pintia.cn/problem-sets/12/problems/358这个题目和十进制数转换成二进制数类似。 用一个两位数来思考递归的过程,就容易多了。 void printdigits(int n) { if (n < 10) { printf("%d\n", n); } e ...
分类:
其他好文 时间:
2020-01-26 15:59:48
阅读次数:
58
1040 有几个PAT (25分) https://pintia.cn/problem-sets/994805260223102976/problems/994805282389999616 #include <cstdio> #include <iostream> #include <algori ...
分类:
其他好文 时间:
2020-01-26 15:48:25
阅读次数:
80
1043 输出PATest (20分) https://pintia.cn/problem-sets/994805260223102976/problems/994805280074743808 #include <iostream> #include <cstdio> #include <algo ...
分类:
其他好文 时间:
2020-01-26 13:19:22
阅读次数:
64
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