Here you can find the source of squared(int x)
public static int squared(int x)
//package com.java2s; //License from project: Apache License public class Main { public static int squared(int x) { return (int) Math.round(Math.pow(x, x)); }/*from www . j av a 2 s .c o m*/ public static int pow(int x, int y) { return (int) Math.round(Math.pow(x, y)); } }