教育サーバーのページ
オンラインテキスト目次
ソフトウエア入門演習
public class AProgram {
public static void main(String[] args) {
int a = 100;
System.out.println("started");
if (a > 20) {
System.out.println("a is greater than 20.");
}
System.out.println("end");
}
}