高精度加法 (C++代码)(大数加法) 摘要:解题思路:大数加法注意事项:大数加法参考代码:#include <stdio.h> #include <cstring> void add(char a[], char b[])//a=a+b…… 题解列表 2017年08月26日 1 点赞 0 评论 1210 浏览 评分:7.3
字符串输入输出函数 (C++代码)(都当成字符串吧hhhhhhhh) 摘要:解题思路:都当成字符串吧hhhhhhhh注意事项:都当成字符串吧hhhhhhhh参考代码:#include<stdio.h> int main() { char a[50], b[50…… 题解列表 2017年08月26日 1 点赞 1 评论 587 浏览 评分:8.0
简单编码 (C++代码) 摘要:#include<cstdio> #include<iostream> #include<cstring> using namespace std; int main(void){ …… 题解列表 2017年08月26日 0 点赞 0 评论 933 浏览 评分:0.0
钟神赛车 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <algorithm>using namespace std;int main (){ int n; while(…… 题解列表 2017年08月26日 0 点赞 0 评论 1136 浏览 评分:2.0
川哥的吩咐 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <deque>#include <stack>#include <queue>#include <string>#…… 题解列表 2017年08月26日 0 点赞 0 评论 1351 浏览 评分:9.9
震宇大神的杀毒软件 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <algorithm>using namespace std;int main (){ int a; while(…… 题解列表 2017年08月26日 0 点赞 0 评论 1443 浏览 评分:2.0
Tom数 (C++代码) 摘要:解题思路:直接将输入的每行数字看作字符串注意事项:参考代码:#include <iostream>#include <string>using namespace std;int main (){ s…… 题解列表 2017年08月26日 1 点赞 0 评论 1066 浏览 评分:0.0
C语言训练-求s=a+aa+aaa+aaaa+aa...a的值 (C++代码)(手动优化一下计算) 摘要:解题思路:按照列竖式计算差不多的思路完成,优化一下计算。注意事项:循环次数参考代码:#include <stdio.h> int main() { int a, n, i, ans; …… 题解列表 2017年08月24日 1 点赞 0 评论 1694 浏览 评分:6.4
【偶数求和】 (C++代码) 摘要:#include<iostream> #include<cstring> #include<cstdio> using namespace std; int main(void) { …… 题解列表 2017年08月22日 0 点赞 0 评论 989 浏览 评分:0.0
2^k进制数 (C++代码)使用递归方法 摘要:#include<cstdio> #include<iostream> using namespace std; char s[30000]; int k , w ; int len; i…… 题解列表 2017年08月18日 2 点赞 1 评论 820 浏览 评分:7.3