Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class P08vowelsSum {
- public static void main(String[]args){
- Scanner scanner = new Scanner(System.in);
- String text = scanner.nextLine();
- int sum = 0;
- for (int i = 0; i < text.length(); i++){
- char currentSymbol = text.charAt(i);
- System.out.println(currentSymbol);
- switch (currentSymbol){
- case 'a':
- sum +=1;
- break;
- case 'e':
- sum +=2;
- break;
- case 'i':
- sum+=3;
- break;
- case 'o':
- sum+=4;
- break;
- case 'u':
- sum+=5;
- break;
- default:
- sum+=0;
- break;
- }
- }
- System.out.println(sum);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment