Dado un número n como entrada, necesitamos imprimir su tabla, donde N>0.
Ejemplo
Input 1 :- N = 7 Output :- 7 * 1 = 7 7 * 2 = 14 7 * 3 = 21 7 * 4 = 28 7 * 5 = 35 7 * 6 = 42 7 * 7 = 49 7 * 8 = 56 7 * 9 = 63 7 * 10 = 70
Se muestran dos formas de imprimir la tabla de multiplicar para cualquier número:
- Usando for loop para imprimir la tabla de multiplicar hasta 10.
- Usando el bucle while para imprimir la tabla de multiplicar hasta el rango dado.
Método 1: Generación de tablas de multiplicación usando for loop hasta 10
Java
// Java Program to print the multiplication table of the // number N. class GFG { public static void main(String[] args) { // number n for which we have to print the // multiplication table. int N = 7; // looping from 1 to 10 to print the multiplication // table of the number. // using for loop for (int i = 1; i <= 10; i++) { // printing the N*i,ie ith multiple of N. System.out.println(N + " * " + i + " = " + N * i); } } }
Producción
7 * 1 = 7 7 * 2 = 14 7 * 3 = 21 7 * 4 = 28 7 * 5 = 35 7 * 6 = 42 7 * 7 = 49 7 * 8 = 56 7 * 9 = 63 7 * 10 = 70
Método 2: – Generación de tablas de multiplicación usando el ciclo while hasta cualquier rango dado
Java
// Java Program to print the multiplication table of // number N using while loop class GFG { public static void main(String[] args) { // number n for which we have to print the // multiplication table. int N = 7; int range = 18; // looping from 1 to range to print the // multiplication table of the number. int i = 1; // using while loop while (i <= range) { // printing the N*i,ie ith multiple of N. System.out.println(N + " * " + i + " = " + N * i); i++; } } }
Producción
7 * 1 = 7 7 * 2 = 14 7 * 3 = 21 7 * 4 = 28 7 * 5 = 35 7 * 6 = 42 7 * 7 = 49 7 * 8 = 56 7 * 9 = 63 7 * 10 = 70 7 * 11 = 77 7 * 12 = 84 7 * 13 = 91 7 * 14 = 98 7 * 15 = 105 7 * 16 = 112 7 * 17 = 119 7 * 18 = 126
Publicación traducida automáticamente
Artículo escrito por lavishgarg26 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA