1584: 蓝桥杯算法训练VIP-判定字符位置 摘要:**题目描述:**返回给定字符串s中元音字母的首次出现位置。英语元音字母只有‘a’、‘e’、‘i’、‘o’、‘u’五个。若字符串中没有元音字母,则返回0。**只考虑小写的情况。** 直接上代码,一看…… 题解列表 2024年07月13日 0 点赞 0 评论 121 浏览 评分:9.9
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char str[101]; gets(str); str[strlen(str)] = &#…… 题解列表 2023年06月29日 0 点赞 0 评论 62 浏览 评分:0.0
判定字符位置(for循环及简单的条件判断) 摘要:解题思路:注意事项:参考代码://返回给定字符串s中元音字母的首次出现位置。英语元音字母只有‘a’、‘e’、‘i’、‘o’、‘u’五个。//若字符串中没有元音字母,则返回0。//只考虑小写的情况。#i…… 题解列表 2022年12月14日 0 点赞 0 评论 111 浏览 评分:0.0
111111111111111111111111111111111111111111111111111111 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[101]; gets(str); int len=strl…… 题解列表 2022年08月08日 0 点赞 0 评论 184 浏览 评分:0.0
编写题解 1584: 蓝桥杯算法训练VIP-判定字符位置(迭代器3) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { string str1="aeiou"; …… 题解列表 2022年05月20日 0 点赞 0 评论 92 浏览 评分:9.9
编写题解 1584: 蓝桥杯算法训练VIP-判定字符位置(2) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { string str1="aeiou"; …… 题解列表 2022年05月20日 0 点赞 0 评论 95 浏览 评分:0.0
编写题解 1584: 蓝桥杯算法训练VIP-判定字符位置 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int main() { string st…… 题解列表 2022年05月20日 0 点赞 0 评论 104 浏览 评分:0.0
蓝桥杯算法训练VIP-判定字符位置 题解(c++风格,简单易懂) 摘要:解题思路:字符串内判断是否位元音字母,如是,便直接输出,结束循环,这样输出的一定是最前的元音字母,在循环后加个输出‘0’,以便没有元音字母。注意事项:无。参考代码:#include<bits/stdc…… 题解列表 2022年05月15日 0 点赞 0 评论 86 浏览 评分:0.0
蓝桥杯算法训练VIP-判定字符位置 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int t;int main() { cin>>s; for…… 题解列表 2022年05月08日 0 点赞 0 评论 107 浏览 评分:0.0
轻轻松松六行搞定 摘要:解题思路:注意事项:参考代码:s=input();s1=set(s);s2= {"a","e","i","o", "u"};min=len(s) for i in s1 & s2: a=s…… 题解列表 2022年03月30日 0 点赞 0 评论 110 浏览 评分:9.9