Program To Create Table of 31 to 40

/*  Program To Create Table of 31 to 40  */

import java.io.*;
class Tables
{
 public static void main(String[] arg)
 {
  for(int i=1;i<=10;i++)
   {
    
    for(int j=31;j<=40;j++)
    {
     System.out.printf("%3d |",(j*i));
    }  
   System.out.println(" "); 
  }
  }
}

0 comments:

Post a Comment

 
 
 
 


Copyright © 2012 http://codeprecisely.blogspot.com. All rights reserved |Term of Use and Policies|