1654: 蓝桥杯算法训练VIP-确定元音字母位置(超级简洁)(超级易懂)新手也适合看 摘要: import java.util.*; public class 确定元音字母位置 { public static void main(String[] args) { Scanner…… 题解列表 2023年02月21日 0 点赞 0 评论 187 浏览 评分:9.9
1654确定元音字母位置——JAVA简单解法 摘要:解题思路:简单题做一个基本判断,是元音字母就输出位置注意事项:可以用charAt()取字符串中每一位的元素,然后进行元音辅音的判断参考代码:import java.util.*; public cl…… 题解列表 2023年03月13日 0 点赞 0 评论 162 浏览 评分:0.0
判断元音字母出现的位置 摘要: #include #include #include /* run this program using the console pauser or add…… 题解列表 2024年03月28日 0 点赞 0 评论 219 浏览 评分:0.0
简单易懂的解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char a[200]; gets(a); i…… 题解列表 2024年12月16日 0 点赞 0 评论 98 浏览 评分:0.0