package com.original_game.janken; import javax.swing.JFrame; public class GameMain { public static void main(String[] args) { // TODO Auto-generated method stub //ウィンドウの表示 JFrame frame = new JFrame("じゃんけんゲーム"); frame.setSize(640, 480); frame.setLocationRelativeTo(null); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setResizable(false); frame.setVisible(true); } }