fork(2) download
  1. import java.util.Scanner;
  2.  
  3. class Ideone {
  4. public static void main(String[] args) {
  5. Scanner on = new Scanner(System.in);
  6. System.out.println("Digite a palavra: ");
  7. String texto = on.nextLine();
  8. int soma = 0;
  9. for (char caractere : texto.toCharArray()) {
  10. //"A" vale 97, então tira 96 e assim por diante
  11. soma += caractere > 96 && caractere < 123 ? caractere - 96 : 0;
  12. }
  13. System.out.println(soma);
  14. }
  15. }
Success #stdin #stdout 0.07s 711680KB
stdin
bac
stdout
Digite a palavra: 
6