URI Problem (Squared and Cubic) 1143:
Squared and Cubic is a basic problem on URI online judge for novice problem solver.
You can find details on this Link.
import java.util.Scanner; /** * @Author : Muhammad Harun-Or-Roshid * @E-mail : [email protected] * @Date : Oct 19, 2016 * @Time : 1:32:10 AM */ public class Uri1143 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); if (n >= 1 && n <= 1000) { for (int i = 1; i <= n; i++) { int sq = (int) Math.pow(i, 2); int malti = i * sq; System.out.println(i + " " + sq + " " + malti); } } } }