クラス オブジェクトを使用しない関数を Java で定義しています。ユーザーからの文字列入力を整数に変換するために使用されます。関数をどこに配置しても、エラーが発生します。どこに置こうか悩みました。ここにあります
//Basically, when the user enters character C, the program stores
// it as integer 0 and so on.
public int suit2Num(String t){
int n=0;
char s= t.charAt(0);
switch(s){
case 'C' :{ n=0; break;}
case 'D': {n=1;break;}
case 'H':{ n=2;break;}
case 'S': {n=3;break;}
default: {System.out.println(" Invalid suit letter; type the correct one. ");
break;}
}
return n;
}