import java.io.*; class Scrabble { // A class to give you the scrabble score of a word public static void main(String[] args) throws IOException { BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); System.out.print("Enter a word: "); String word=in.readLine(); System.out.println("Scrabble score is: "+score(word)); } public static int score(String word) { String uword=word.toUpperCase(); int score=0; for(int i=0;i