ゲームプログラミングとはその名のとおりゲームのプログラムを作ることを指します。『Javaから楽しく学ぶ!ゲームプログラミング専門学校』ではゲームプログラミングについて、実際にゲームプログラムをJAVAプログラミング言語を使用し、作成していきながら詳しく解説していきます。
import java.io.*;
public class sample02 {
public static void main(String[] args) {
int c;
System.out.println( "文字を入力してください。" );
try{
c = System.in.read();
}catch(Exception e){
}
swicth(c){
case 65:
System.out.println("押されたキーは『a』です。");
break;
case 66:
System.out.println("押されたキーは『b』です。");
break;
case 67:
System.out.println("押されたキーは『c』です。");
break;
case 68:
System.out.println("押されたキーは『d』です。");
break;
case 69:
System.out.println("押されたキーは『e』です。");
break;
default:
System.out.println("押されたキーは『a,b,c,d,e』以外です。");
}
}
}