Dado un número n como entrada, necesitamos imprimir su tabla.
C++
// CPP program to print table of a number #include <iostream> using namespace std; int main() { int n = 5; // Change here to change output for (int i = 1; i <= 10; ++i) cout << n << " * " << i << " = " << n * i << endl; return 0; }
Java
// Java program to print table // of a number import java.io.*; class table { // Driver code public static void main(String arg[]) { // Change here to change output int n = 5; for (int i = 1; i <= 10; ++i) System.out.println(n + " * " + i + " = " + n * i); } } // This code is contributed by Anant Agarwal.
Python
# Python Program to print table # of a number upto 10 def table(n): for i in range (1, 11): # multiples from 1 to 10 print "%d * %d = %d" % (n, i, n * i) # number for which table is evaluated n = 5 table(n) # This article is contributed by Shubham Rana
C#
// C# program to print // table of a number using System; class GFG { // Driver code public static void Main() { // Change here to // change output int n = 5; for (int i = 1; i <= 10; ++i) Console.Write(n + " * " + i + " = " + n * i + "\n"); } } // This code is contributed // by Smitha.
PHP
<?php // PHP program to print // table of a number // Driver Code $n = 5; // Change here to // change output for ($i = 1; $i <= 10; ++$i) echo $n , " * " , $i , " = " , $n * $i , "\n"; // This code is contributed // by Smitha ?>
Javascript
<script> // Javascript program to print // table of a number // Driver Code // Change here to change output let n = 5; for (let i = 1; i <= 10; ++i) document.write( n + " * " +i + " = " + n * i +"<br>"); // This code is contributed // by bobby </script>
C++
// CPP program to print table of a number // using recursion #include <iostream> using namespace std; // print_table() prints table of number and takes //1 required value that is number of whose teble to be printed //and an optional input i whose default value is 1 void print_table(int n, int i = 1) { if (i == 11)// base case return; cout << n << " * " << i << " = " << n * i << endl; i++;//increment i print_table(n,i); } int main() { int n = 5; print_table(n); } // This code is contributed by Sivesh Kumar Dwivedi
Javascript
// JavaScript program to print table of a number // using recursion // print_table() prints table of number and takes //1 required value that is number of whose teble to be printed //and an optional input i whose default value is 1 function print_table(n, i = 1) { if (i == 11)// base case return; console.log(n + " * " + i + " = " + n * i); i++;//increment i print_table(n,i); } // Driver Code let n = 5; print_table(n); // This code is contributed by phasing17
C++
// CPP program to print table over a range. #include <iostream> using namespace std; int main() { int n = 8; // Change here to change input number int range = 12; // Change here to change result. for (int i = 1; i <= range; ++i) cout << n << " * " << i << " = " << n * i << endl; return 0; }
Java
// Java program to print table // over given range. import java.io.*; class table { // Driver code public static void main(String arg[]) { // Change here to change input number int n = 8; // Change here to change result int range = 12; for (int i = 1; i <= range; ++i) System.out.println(n + " * " + i + " = " + n * i); } } // This code is contributed by Anant Agarwal.
Python
# Python Program to print table # of a number given range def table(n, r): for i in range (1, r + 1): # multiples from 1 to r (range) print "%d * %d = %d" % (n, i, n * i) # number for which table is evaluated n = 8 # range upto which multiples are to be calculated r = 12 table(n,r) # This article is contributed by Shubham Rana
C#
// C# program to print // table over given range. using System; class GFG { // Driver code public static void Main() { // Change here to // change input number int n = 8; // Change here to // change result int range = 12; for (int i = 1; i <= range; ++i) Console.Write(n + " * " + i + " = " + n * i + "\n"); } } // This code is contributed // by Smitha.
PHP
<?php // PHP program to print // table over a range. $n = 8; // Change here to // change input number $range = 12; // Change here to // change result. for ($i = 1; $i <= $range; ++$i) echo $n , " * " , $i , " = ", $n * $i , "\n"; // This code is contributed // by m_kit ?>
Javascript
<script> // Javascript program to print // table of a number in range // Driver Code // Change here to // change input number let n = 8; // Change here to // change result. let range = 12; for (let i = 1; i <= range; ++i) document.write( n + " * " +i + " = " + n * i +"<br>"); // This code is contributed // by bobby </script>
Publicación traducida automáticamente
Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA