たった 4 文字のテキスト ツイスト ゲームを作成するための次のステップは何ですか? これがアイデアです: これが私のコードです:
import java.io.*;
import javax.swing.JOptionPane;
public class sample {
public static void main(String[] args) {
String []a = new String[4];
a[0] = JOptionPane.showInputDialog("Input 1st character");
a[1] = JOptionPane.showInputDialog("Input 2nd character");
a[2] = JOptionPane.showInputDialog("Input 3rd character");
a[3] = JOptionPane.showInputDialog("Input 4th character");
JOptionPane.showMessageDialog(null, a[0] + " " + a[1]+ " " +a[2]+ " " +a[3] + " is the Letters");
}
}
ユーザーが 4 文字を入力すると、プログラムは入力された文字に対して作成できる任意の単語を生成します。