Star


私信TA

用户名:1223yuan

访问量:460

签 名:

等  级
排  名 6143
经  验 1452
参赛次数 0
文章发表 3
年  龄 0
在职情况 学生
学  校 西安邮电大学
专  业

  自我简介:

TA的其他文章

判定字符位置
浏览:131
陶陶摘苹果
浏览:153

解题思路:通过获取每一位字符进行比较,并计数

注意事项:

参考代码:

import java.util.Scanner;

public class Main {
   public static void main(String[] args) {
       Scanner ac=new Scanner(System.in);
       String str=ac.next();
       int count=0;                                      //初始值为0
       for (int i = 0; i <str.length(); i++) {
           if(str.charAt(i)=='a'){
               count++;
               if(count==1){
                   System.out.println(i+1);
               }
           }else if(str.charAt(i)=='e'){
               count++;
               if(count==1){
                   System.out.println(i+1);
               }
           }else if(str.charAt(i)=='i'){
               count++;
               if(count==1){
                   System.out.println(i+1);
               }
           }else if(str.charAt(i)=='o'){
               count++;
               if(count==1){
                   System.out.println(i+1);
               }
           }else if(str.charAt(i)=='u'){
               count++;
               if(count==1){
                   System.out.println(i+1);
               }
           }else{

           }
       }
       if(count==0){
           System.out.println("0");
       }
   }

}

 

0.0分

0 人评分

  评论区

  • «
  • »