JOptionPaneを使用して number23 のようなものを入力したいのですが、私が知っている方法は、数値を入力するか文字列を入力することだけです。
単語と数字を入力するにはどうすればよいですか?
私がこれまでに持っているもの:
import javax.swing.JOptionPane;
public class morePractice {
public static void main(String[] args) {
String str;
int num1;
int total=0;
char letter;
str=JOptionPane.showInputDialog(null,"Enter phrase");
for(int i=0;i<str.length();i++){
letter=str.charAt(i);
if(letter>='A'&&letter<='Z'){
total++;
}
}
JOptionPane.showMessageDialog(null,"There are " + total + " upper case letters");
}
}