Using Nested loops

Using Nested loops

How to use nested loops in java when I want to print the 10 multiples of numbers 2 to 15(in multiplication table)

View Answers

February 16, 2012 at 4:44 PM

public class MultiplicationTable{
public static void main(String[] args) {
int[][] array = new int[16][16];
for (int i=1; i<array.length; i++) {
for (int j=1; j<array[i].length; j++) {
array[i][j] = i*j;
System.out.print(" " + array[i][j]);
}
System.out.println("");
}
}
}









Related Tutorials/Questions & Answers:
Using Nested loops
Using Nested loops  How to use nested loops in java when I want to print the 10 multiples of numbers 2 to 15(in multiplication table)   public class MultiplicationTable{ public static void main(String[] args) { int
I need to output number diamond using nested for loops.
I need to output number diamond using nested for loops.  How to i output this using nested for loops 1 131 13531 1357531 135797531 1357531 13531 131 1
Advertisements
nested for loops
nested for loops  Hello all, I have created a program(gui.... This is my first time using java and my first time programming, but I am guessing that the problem lies with my nested for loop which calculates all information
nested loops
nested loops  please tell input to get the output: 12345 23456 34567 45678
pattern-using loops
pattern-using loops  Write a program that displays the following pattern ... (use nested loops) * ** * ** * ** *   the correct pattren
read string - using loops in Java
read string - using loops in Java  Write a program to read a string composed of an unknown number of words, then count the number of words in the string, and Display the longest and shortest words, with first letter Uppercase
Solve using only Javascript loops...
Solve using only Javascript loops...  Write a JavaScript code, 1) to find a number of unique letters in string. (Eg. if keyword is unique, Unique count will be '4') 2) so that numbers appear in following format, 1 1 2
print 100 numbers using loops
print 100 numbers using loops  how to print from 1 to 100 using for loop ?   Hi Friend, You can use the following code:ADS_TO_REPLACE_1 class Loop{ public static void main(String[] args){ for(int i=1;i<
print rectangle triangle with ?*? using loops
print rectangle triangle with ?*? using loops   * * * * * * i want print like this.what is the code?   import java.lang.*; class Traingles { public static void main(String args[]) { for(int i=1;i<=5
Loops
Loops  Write code that uses nested loops to print the following patterns: Pattern1: 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 1 2 3 4 5 6 Pattern 2: 1 2 3 4 5 6 1 2 3 4 5 1 2 3 4 1 2 3 1 2 1
Loops
Loops  Write code that uses nested loops to print the following patterns: Pattern1: 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 1 2 3 4 5 6 Pattern 2: 1 2 3 4 5 6 1 2 3 4 5 1 2 3 4 1 2 3 1 2 1
Loops
Loops  by using drjava q1.Write code that uses nested loops to print the following patterns: Pattern1: 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 1 2 3 4 5 6 Pattern 2: 1 2 3 4 5 6 1 2 3 4 5 1 2 3 4 1 2 3 1 2 1 q2.Write code
Loops
Loops  ï??Using for loops, Write a program to simulate a clock countdown. The program prompts the user to enter the number of seconds, displays a message at every second, and terminates when the time expires. Use method
Write a program that (algorithmically) shows a times table.(convert integers to strings, format text, nested loops)
Write a program that (algorithmically) shows a times table.(convert integers to strings, format text, nested loops)   Write a java program..., nested loops) 0 1 2 3 4 5 6 7 8 9 0 0 0 0 0 0 0
Java repeat string without using loops
Java repeat string without using loops In this section, you will learn how to repeat string without using for loops. The given example accepts the number... using while loop or any other control statements. Example:ADS_TO_REPLACE_1
print a-z, A-Z with exact order using loops
print a-z, A-Z with exact order using loops  how to print from a-z, A-Z with exact order using for loop? Thanks for all concern
Java reverse words in a string using only loops
Java reverse words in a string using only loops In this tutorial, you will learn how to reverse words in a string without using any inbuilt methods like split() etc, StringTokenizer functiom or any extra ordinary function Only loops
write program have product - using loops
write program have product - using loops  Write a program for a grocery that reads products data and determine and display the product that has the highest price and the average price. A product has three pieces of data: id (int
loops
loops  how to get the sum of 10 number using a loop
loops
loops  how to use for loop and while loop in java?/ how to write a code using for or while loop
loops
loops  I need the program output 55555 4444 333 22 1 like this by using for loop and if condition only
Nested If Statement
if statement. Here we are providing you an example using Nested-If statement... Nested If Statement       In this section you will study about the Nested-if Statement in jsp.ADS
Loops
3.10. Loops Loops are the essential part of the program that have.... More than one loops can be used several times in a script. Loops makes easy... instructed for repetition of the code. PHP Loops ADS_TO_REPLACE_1 In PHP, like other
Loops
Loops
loops
use of loops and screenshots
use of loops and screenshots  1.how to use loops in netbeans? 2.how to draw a correct screenshot
Nested class
Nested class  What is nested class?  when a class is defined within another class then such a class is called a nested class. Nested... nested classes are: It is a way of logically grouping classes that are only used
ModuleNotFoundError: No module named 'loops'
ModuleNotFoundError: No module named 'loops'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'loops' How to remove the ModuleNotFoundError: No module named 'loops'
Java - Declaring variables in for loops
Java - Declaring variables in for loops  Java - Declaring variables in for loops
Use javascript loops..
Use javascript loops..  Write a Javascript code to create a redirection script based on day of the week
How to read loops in Java
How to read loops in Java  Example that explains how to read loop in Java
Nested Clases
Nested Clases  public class Nestclasses { a obj=new a(); public..."; System.out.println("hellwo in nested class"+i+ch); } } } class Outer..."); } } } /*Q:-Here I innner Class Constructor but its not call why i
program to create nested tables
program to create nested tables  program to create nested tables
Nested try
Nested try  Hi, In eclipse without providing input i am getting different outputs ie my exception gets executed first then finally block and vice versa.pl explain me class Demo { static void nestedTry(String args[]) { try
loops , control structures
loops , control structures  a simple java program to print 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1
LOOPS - Java Interview Questions
LOOPS   how to find out unique number of elements in given array?{1,2,5,3,2,1,1,7,2,3,0,1,5} output is: 1-4 2-3 3-2 5-2 0-1 7-1 i want source code plz help me
nested for-loop
nested for-loop  hi.write a program that will prompt the user for a positive integer(num) and then display two triangles with num number of lines to represent the following patterns of asterisks. the input num must be validated
Nested try
Nested try  Each time when i execute this code in eclipse i get different answers pl help me with this code class Demo { static void nestedTry..., visit the following link: Nested Try Example
For Loops
For loop is used to run the code in the block in the specified number of times. It is pre-directed and can write using parameters.  Syntax for (init; condition; increment)   {   code to be executed;  
Nested classes: Examples and tutorials
Nested classes: Examples and tutorials       Nested classes Here is another advantage of the Java... within another class, such class is called a nested class. Inner classes can
The nested class - Java Beginners
The nested class  Hi, What is nested class in Java? What is the benefits of nested class? Write examples of nested class. Thanks   .../java/n/java-nested-class.shtml Thanks
Arrays, loops and string handling
Arrays, loops and string handling  How would i go about in creating a program to mark and grade a set of multiple choice test results... correct answers using JOptionPane dialog box and store the entire answer as on string
ModuleNotFoundError: No module named 'gevent-loops'
ModuleNotFoundError: No module named 'gevent-loops'  Hi, My Python... 'gevent-loops' How to remove the ModuleNotFoundError: No module named 'gevent-loops' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'gevent-loops'
ModuleNotFoundError: No module named 'gevent-loops'  Hi, My Python... 'gevent-loops' How to remove the ModuleNotFoundError: No module named 'gevent-loops' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'gevent-loops'
ModuleNotFoundError: No module named 'gevent-loops'  Hi, My Python... 'gevent-loops' How to remove the ModuleNotFoundError: No module named 'gevent-loops' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'Nested'
ModuleNotFoundError: No module named 'Nested'  Hi, My Python... 'Nested' How to remove the ModuleNotFoundError: No module named 'Nested'... to install padas library. You can install Nested python with following command
while loop to for loops
while loop to for loops  I have to change this while loops to for loops and I was wondering if you could help me out. I got the codes just need to know how to change it. int currentNum= num1; while(num1>num2
nested exception is java.lang.ClassNotFoundException: org.springframework.jdbc.datasource.DriverManagerDataSource
nested exception is java.lang.ClassNotFoundException... error while starting a web application: nested exception...-xxx.jar Thanks   HI, If you are using the maven, then add the following
Static Nested Classes
nested classes can be accessed by using the enclosing class name... Static Nested Classes       A nested class that is declared static is called a static nested class

Ads