命令方式でメニューを印刷したいのですが、プログラムが何も実行しません。誰かが私にこれを修正する方法を教えてもらえますか?
これがクラスのメソッド宣言です。
public class Factorial
{
public void instructions()
{
System.out.printf("Enter your choice:\n",
" 1 to calculate a factorial value of an integer.\n",
" 2 to calculate mathematical constant e.\n",
" 3 to calculate e^x.\n",
" 4 to end.\n");
} // End of instructions
}
これがFactorialクラスから命令メソッドを呼び出すメインです。
import java.util.Scanner; // Program uses scanner.
public class behzat
{
private static Scanner input;
public static void main(String[] args)
{
Factorial myfactorial = new Factorial();
myfactorial.instructions();
}
}