java square a number
//To square:
int i = 2;
int square = Math.pow(i, 2);
//To cube:
int i = 2;
int cube = Math.pow(i, 3);
//To nth power:
int i = 2;
int nthPower = Math.pow(i, 4);
java square a number
//To square:
int i = 2;
int square = Math.pow(i, 2);
//To cube:
int i = 2;
int cube = Math.pow(i, 3);
//To nth power:
int i = 2;
int nthPower = Math.pow(i, 4);
how to give square in java
import java.util.*;
public class Square {
public static void main(String args[]){
Scanner sc=new Scanner(System.in);
int num;
System.out.print("Enter an integer number: ");
num=sc.nextInt();
System.out.println("Square of "+ num + " is: "+ Math.pow(num, 2));
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us