WU-判定字符位置 (C++代码) 摘要:题目很简单 直接写就行#include<iostream> #include<cstring> using namespace std; int main() { string str; …… 题解列表 2017年12月09日 2 点赞 0 评论 1749 浏览 评分:0.0
DNA (C++代码) 摘要:解题思路:把重复的n个DNA看成一个,解决一个的之后,利用循环来解决问题注意事项:参考代码:#include<iostream>using namespace std;int main(){ i…… 题解列表 2017年12月09日 2 点赞 0 评论 920 浏览 评分:0.0
WU-删除数组中的0元素 (C++代码) 摘要:用两个数组 这个题目就会很简单参考代码:#include<iostream> using namespace std; int a[1006]; int b[1006]; int main()…… 题解列表 2017年12月09日 3 点赞 0 评论 1717 浏览 评分:9.6
WU-陶陶摘苹果2 (C++代码) 摘要:题目很简单参考代码:#include<iostream> using namespace std; int main() { int n,m; cin>>n>>m; int sum=0; …… 题解列表 2017年12月09日 4 点赞 0 评论 1287 浏览 评分:0.0
WU-输出正反三角形 (C++代码) 摘要:解题思路:这题恶心在正确的格式没有说明清楚 所以要不断地试 或者找到原题才可以 这题的前面要输入的空格数为m+n-(当前排数)。参考代码:#include<iostream> using na…… 题解列表 2017年12月08日 4 点赞 0 评论 1355 浏览 评分:9.9
WU-输出九九乘法表 (C++代码) 摘要:解题思路: 直接原样输出即可 注意事项:参考代码:#include<iostream> using namespace std; int main() { cout<<" Nin…… 题解列表 2017年12月08日 4 点赞 0 评论 2086 浏览 评分:2.0
WU-输入输出格式练习 (C++代码) 摘要:解题思路: 按照格式输出所有数据 注意事项: 考验的基本的输入输出操作参考代码:#include<iostream> #include<cstdio> using namespa…… 题解列表 2017年12月08日 4 点赞 0 评论 1337 浏览 评分:9.9
WU-数的读法 (C++代码) 摘要:小弟不才 花了一个下午 写了将近120行代码 才AC 这题写起来 比较恶心 也比较复杂 所以好像没什么人去做 但我耐着性子AC了,所以希望大家能有恒心 有毅力 不要害怕出错 …… 题解列表 2017年12月08日 5 点赞 0 评论 1825 浏览 评分:0.0
wu-理财计划 (C++代码) 摘要:解题思路:题目是按解题思路来的 注意事项: 注意是输出两位小数,而不是保留两位小数参考代码:#include<iostream> #include<iomanip> #include<…… 题解列表 2017年12月07日 2 点赞 0 评论 1062 浏览 评分:0.0
wu-淘淘的名单 (C++代码) 摘要:解题思路:题目很简单 按照要求来就行参考代码:#include<iostream> #include<cstring> using namespace std; void f(string s…… 题解列表 2017年12月07日 3 点赞 0 评论 1763 浏览 评分:0.0