WU-输出九九乘法表 (C++代码) 摘要:解题思路: 直接原样输出即可 注意事项:参考代码:#include<iostream> using namespace std; int main() { cout<<" Nin…… 题解列表 2017年12月08日 4 点赞 0 评论 2038 浏览 评分:2.0
WU-输入输出格式练习 (C++代码) 摘要:解题思路: 按照格式输出所有数据 注意事项: 考验的基本的输入输出操作参考代码:#include<iostream> #include<cstdio> using namespa…… 题解列表 2017年12月08日 4 点赞 0 评论 1284 浏览 评分:9.9
WU-数的读法 (C++代码) 摘要:小弟不才 花了一个下午 写了将近120行代码 才AC 这题写起来 比较恶心 也比较复杂 所以好像没什么人去做 但我耐着性子AC了,所以希望大家能有恒心 有毅力 不要害怕出错 …… 题解列表 2017年12月08日 5 点赞 0 评论 1760 浏览 评分:0.0
wu-理财计划 (C++代码) 摘要:解题思路:题目是按解题思路来的 注意事项: 注意是输出两位小数,而不是保留两位小数参考代码:#include<iostream> #include<iomanip> #include<…… 题解列表 2017年12月07日 2 点赞 0 评论 1015 浏览 评分:0.0
wu-淘淘的名单 (C++代码) 摘要:解题思路:题目很简单 按照要求来就行参考代码:#include<iostream> #include<cstring> using namespace std; void f(string s…… 题解列表 2017年12月07日 3 点赞 0 评论 1718 浏览 评分:0.0
WU-格式化数据输出 (C++代码) 摘要:解题思路:我来吐槽一下这个网站的题目质量 ,题目这种给应该根本做不出来,我是去别的网站上找的原题才做出来的。 此题做起来感觉毫无意义。但是我有AC强迫症所以花了10元买了份蓝桥杯上原题的资料 才看到…… 题解列表 2017年12月07日 25 点赞 2 评论 1526 浏览 评分:9.9
WU-字符串比较 (C++代码) 摘要: 直接调用c++特性string 流来解决问题参考代码:#include<iostream> #include<cstring> using namespace std; int main()…… 题解列表 2017年12月07日 3 点赞 0 评论 982 浏览 评分:6.0
C语言程序设计教程(第三版)课后习题8.6 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <string>#include <cstdio>using namespace std;int main(){ …… 题解列表 2017年12月06日 0 点赞 0 评论 594 浏览 评分:0.0
代码简短能完成就好 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ string a; int m,n; cin >> m; cin >…… 题解列表 2017年12月06日 0 点赞 0 评论 629 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.5 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cstring>using namespace std;int main(){ char a[100]; int…… 题解列表 2017年12月06日 0 点赞 0 评论 684 浏览 评分:0.0