[STL训练]壮志难酬,字符串数组暴力! 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ // 定义一个字符串数组,用于存储输入的字…… 题解列表 2024年11月11日 0 点赞 0 评论 54 浏览 评分:0.0
c++ 2071: [STL训练]壮志难酬 没用到字符串 摘要:```cpp #include using namespace std; int main() { vector v1; int t; cin>>t; …… 题解列表 2024年05月08日 0 点赞 0 评论 115 浏览 评分:0.0
一些强迫症的输出 摘要:## 浏览了一些题解,发现输出格式与题目要求不一致,多加了一些代码,调成了与题目要求一致的输出格式//勿喷 ## 代码 #include #include usin…… 题解列表 2024年04月12日 0 点赞 0 评论 81 浏览 评分:0.0
编写题解 2071: [STL训练]壮志难酬 find 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> #include<vector> using namespace std; int mai…… 题解列表 2022年04月30日 0 点赞 0 评论 136 浏览 评分:0.0
Hifipsysta- 2071-[STL训练]壮志难酬(C++代码) 摘要:```cpp #include #include using namespace std; int main(){ int t, n, pos; string a_do…… 题解列表 2022年02月10日 0 点赞 0 评论 125 浏览 评分:0.0
2071: [STL训练]壮志难酬 摘要:用 find 函数找到小数点的位置,再加上往后移动的位数就是所求数字。#include<bits/stdc++.h> using namespace std; int main(){ …… 题解列表 2021年12月24日 0 点赞 0 评论 150 浏览 评分:0.0
[STL训练]壮志难酬-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { int N,M; string str;…… 题解列表 2021年02月03日 0 点赞 0 评论 173 浏览 评分:0.0
[STL训练]壮志难酬-题解(C++代码)只做最好的思路! 摘要:这题比较简单,其实就是考察对浮点数的理解,我一次就通过了哦,代码如下: ```cpp #include using namespace std; int main(){ int t,n…… 题解列表 2020年03月28日 0 点赞 0 评论 416 浏览 评分:6.0
string超精简解决! 题解2071:[STL训练]壮志难酬 (C++代码) 摘要:```cpp #include #include using namespace std; int main() { string s; int m,n,j,i; string:…… 题解列表 2020年03月03日 0 点赞 0 评论 456 浏览 评分:8.5
[STL训练]壮志难酬-题解(C++代码) 摘要:需要熟练运用string 的find()函数 ``` #include #include using namespace std; int main() { int n,in…… 题解列表 2019年10月04日 0 点赞 0 评论 661 浏览 评分:9.0