判定字符位置 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ string s; int i; cin>>s…… 题解列表 2017年11月06日 1 点赞 0 评论 888 浏览 评分:6.0
WU-判定字符位置 (C++代码) 摘要:题目很简单 直接写就行#include<iostream> #include<cstring> using namespace std; int main() { string str; …… 题解列表 2017年12月09日 2 点赞 0 评论 1668 浏览 评分:0.0
蓝桥杯算法训练VIP-判定字符位置 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; int f(char ch) { if(ch…… 题解列表 2018年06月14日 0 点赞 0 评论 778 浏览 评分:0.0
蓝桥杯算法训练VIP-判定字符位置 (C++代码)水 摘要:解题思路: 第一次拿平板写代码,感觉还是不错的 水题,水一下就过了参考代码:#include<bits/stdc++.h> using namespace std; int main(…… 题解列表 2019年05月11日 0 点赞 0 评论 598 浏览 评分:0.0
蓝桥杯算法训练VIP-判定字符位置-题解(C++代码) 摘要: #include #include using namespace std; int main() { string str; cin>>…… 题解列表 2020年02月20日 0 点赞 0 评论 424 浏览 评分:0.0
蓝桥杯算法训练VIP-判定字符位置-题解(C++代码) 摘要:```cpp #include using namespace std; int main() { string s; cin>>s; int len=s.…… 题解列表 2020年03月27日 0 点赞 0 评论 416 浏览 评分:0.0
蓝桥杯算法训练VIP-判定字符位置-题解(C++代码)详细注释,80分专用 摘要:解题思路: 遍历字符串,遇到元音字母即输出位置,否则输出0注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int main…… 题解列表 2020年08月25日 0 点赞 0 评论 604 浏览 评分:9.9
蓝桥杯算法训练VIP-判定字符位置-题解(C++代码)预处理元音字符 摘要:```cpp #include using namespace std; string str = "aeiou"; int main() { string s; cin…… 题解列表 2020年12月28日 0 点赞 0 评论 367 浏览 评分:9.9
蓝桥杯算法训练VIP-判定字符位置----C风格和C++风格 摘要://这是用C++中的string来实现 ```cpp #include using namespace std; int main(void) { string str; cin>>…… 题解列表 2021年12月17日 0 点赞 0 评论 362 浏览 评分:9.9
1584: 蓝桥杯算法训练VIP-判定字符位置 摘要:挨个用 find 找 a、e、i、o、u 的位置并保存,如果都没找到输出 0,找到了输出位置。#include <bits/stdc++.h> using namespace std; int…… 题解列表 2022年01月04日 0 点赞 0 评论 145 浏览 评分:0.0