int 型の変数 x に任意の数値を代入し、x を 1 乗、2 乗、3 乗した結果を表示するプログラムを作成しなさい。
public class Exercise
{
public static void main( String[] args )
{
int x = 3;
System.out.println( x );
System.out.println( x * x );
System.out.println( x * x * x );
}
}
以下のように、Math.pow()を使用してもよいが、結果はdoubleとなる。
System.out.println( Math.pow( x, 1 ) );
System.out.println( Math.pow( x, 2 ) );
System.out.println( Math.pow( x, 3 ) );