URI Problem (Multiplication Table) 1078:
Multiplication Table 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 * @Date : Oct 15, 2016 * @Time : 1:16:50 PM */ public class Uri1078 { 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 <= 10; i++) { System.out.println(i + " x " + n + " = " + (i * n)); } } } }