蓝桥杯算法训练VIP-判定字符位置-题解(Java代码) 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args) {…… 题解列表 2020年02月17日 0 点赞 0 评论 326 浏览 评分:0.0
编写题解 1584: 蓝桥杯算法训练VIP-判定字符位置(2) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { string str1="aeiou"; …… 题解列表 2022年05月20日 0 点赞 0 评论 100 浏览 评分:0.0
1584: 蓝桥杯算法训练VIP-判定字符位置 摘要:挨个用 find 找 a、e、i、o、u 的位置并保存,如果都没找到输出 0,找到了输出位置。#include <bits/stdc++.h> using namespace std; int…… 题解列表 2022年01月04日 0 点赞 0 评论 108 浏览 评分:0.0
蓝桥杯算法训练VIP-判定字符位置 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int t;int main() { cin>>s; for…… 题解列表 2022年05月08日 0 点赞 0 评论 111 浏览 评分:0.0
蓝桥杯算法训练VIP-判定字符位置-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char s[100]; int i = 0; gets(s); …… 题解列表 2020年12月26日 0 点赞 0 评论 173 浏览 评分:0.0
111111111111111111111111111111111111111111111111111111 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[101]; gets(str); int len=strl…… 题解列表 2022年08月08日 0 点赞 0 评论 193 浏览 评分:0.0
蓝桥杯算法训练VIP-判定字符位置-题解(Java代码) 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { Scann…… 题解列表 2021年01月09日 0 点赞 0 评论 158 浏览 评分:0.0
蓝桥杯算法训练VIP-判定字符位置 (C++代码)水 摘要:解题思路: 第一次拿平板写代码,感觉还是不错的 水题,水一下就过了参考代码:#include<bits/stdc++.h> using namespace std; int main(…… 题解列表 2019年05月11日 0 点赞 0 评论 501 浏览 评分:0.0
。。自定义函数。。:蓝桥杯算法训练VIP-判定字符位置 (C语言代码) 摘要:解题思路:#include<stdio.h> int fun(char a[100]) { int i,flag=1; for(i=0;a[i];i++) { if(a[i]==…… 题解列表 2019年02月28日 2 点赞 0 评论 783 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char str[101]; gets(str); str[strlen(str)] = &#…… 题解列表 2023年06月29日 0 点赞 0 评论 80 浏览 评分:0.0