题解列表
CCCCCCCCCCCCCCCCCCCCCCCC++++++++++++++++++++++++++++++++++
摘要:解题思路:1注意事项:2参考代码:#include<iostream>using namespace std;int main(){ int a,b,c;&nbs……
简单易懂小代码,两个循环解决问题
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int h, w; char str1[] = {'……
整数序列的元素最大跨度值 ———— STL解法
摘要:解题思路:使用具有C++特色的vector<>容器来代替数组使用,同时使用迭代器,调用STL……
2822两种思路c++
摘要:思路1 从第一项开始#include <iostream>#include <iomanip>using namespace std;int main() { int fz =……
c++ 2796简单解法
摘要:#include <iostream>#include <iomanip>using namespace std;int main() { int n; cin >>……