Created
June 4, 2012 00:05
-
-
Save editnuki/2865509 to your computer and use it in GitHub Desktop.
20120603Main
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package jp.ac.ca.common; | |
//import java.util.Random; | |
//import jp.ac.ca.data.create.CreateRandomNumber; | |
import jp.ac.ca.data.input.UserInputNumber; | |
/** | |
* | |
* @author nuki このクラスはメインクラスとなる 他のpackageに作成したクラスを呼び出し処理を実行していく | |
* 基本的な処理はここには記載せず、各package毎に作成していく | |
* | |
*/ | |
public class Main { | |
/** | |
* @param args | |
*/ | |
public static void main(String[] args) { | |
UserInputNumber.inputKyeboard(); | |
System.out.println("正解です!"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment