。。自定义函数。。:蓝桥杯算法训练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 评论 782 浏览 评分: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-判定字符位置-题解(C++代码) 摘要: #include #include using namespace std; int main() { string str; cin>>…… 题解列表 2020年02月20日 0 点赞 0 评论 335 浏览 评分:0.0