Programming Examples

Java program to accept an int type value as a parameter and print the square of it, if it is more than 120, otherwise print its cube


Write a program to accept an int type value as a parameter and print the square of it, if it is more than 120, otherwise print its cube.

Solution

class SquareQube
{
	public static void main(int n)
	{
		if(n>120)
			System.out.println(“Square=”+(n*n));
		else
			System.out.println(“Cube=”+(n*n*n));
	}
}
Output

Online Exam Quiz for One day Exam Online Typing Test CCC Online Test 2026 Best Computer Training Institute in Prayagraj (Allahabad) Best Java Training Institute in Prayagraj (Allahabad) Best Python Training Institute in Prayagraj (Allahabad) O Level Online Test in Hindi Best Website and Software Company in Allahabad