111111111111111111111111111111111111111111111111111111 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[101]; gets(str); int len=strl…… 题解列表 2022年08月08日 0 点赞 0 评论 253 浏览 评分:0.0
编写题解 1584: 蓝桥杯算法训练VIP-判定字符位置(2) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { string str1="aeiou"; …… 题解列表 2022年05月20日 0 点赞 0 评论 126 浏览 评分:0.0
编写题解 1584: 蓝桥杯算法训练VIP-判定字符位置 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int main() { string st…… 题解列表 2022年05月20日 0 点赞 0 评论 137 浏览 评分:0.0
蓝桥杯算法训练VIP-判定字符位置 题解(c++风格,简单易懂) 摘要:解题思路:字符串内判断是否位元音字母,如是,便直接输出,结束循环,这样输出的一定是最前的元音字母,在循环后加个输出‘0’,以便没有元音字母。注意事项:无。参考代码:#include<bits/stdc…… 题解列表 2022年05月15日 0 点赞 0 评论 139 浏览 评分:0.0
蓝桥杯算法训练VIP-判定字符位置 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int t;int main() { cin>>s; for…… 题解列表 2022年05月08日 0 点赞 0 评论 142 浏览 评分:0.0
判定字符位置 (C语言代码) 摘要:#include <stdio.h> #include <string.h> int main() { char a[100]; gets(a); int i; for(i=0…… 题解列表 2017年12月09日 0 点赞 0 评论 831 浏览 评分:0.0
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
判定字符位置 摘要:解题思路:通过获取每一位字符进行比较,并计数注意事项:参考代码:import java.util.Scanner;public class Main { public static void m…… 题解列表 2021年07月16日 0 点赞 0 评论 312 浏览 评分: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 "stdio.h" int main() { char s[100]; int i,m=0; scanf("%s",&s); for(i=0;s[i…… 题解列表 2020年02月11日 0 点赞 0 评论 377 浏览 评分:0.0