Saturday, January 21, 2017

Multiplication Table upto 10 of any Number

Following is the code to print multiplication table of any number upto 10

import java.util.*;
public class Table
{
    public static void main(String[] args)
    {
        Scanner in=new Scanner(System.in);
        System.out.println("Enter Any Number");
        int a=in.nextInt();
        System.out.println("Multiplication Table");
        for(int i=1;i<=10;i++)
        {
            System.out.printf("%d * %d = %d\n",a,i,a*i);
        }
    }
   
}

Output:

Friday, January 20, 2017

Generate Random Numbers in Java

Random numbers are generated with the help of object of Random class.We call the functions in random class with this object which return random numbers

Following will help you understand:

import java.util.*;
public class Gndec
{
    public static void main(String[] args)
    {
       Random num=new Random();     //num object of Random class
       for(int i=1;i<6;i++)
       {
           System.out.println(num.nextInt(300));   //for integet values between 0 and 300
       }
    }
   
}


Output:


Sum of Array Elements in Java

Following program is used to find sum of array elements :

import java.util.*;
public class Gndec {

 
    public static void main(String[] nt)
    {   Scanner input=new Scanner(System.in);   //for user input
    System.out.println("Enter Number of Elements");
    int n=input.nextInt();    //no of elements
    int[] a=new int[n];       //allocating space for n elements
    System.out.println("Enter The Elements");
        for(int i=0;i<n;i++)
       {
         a[i]=input.nextInt();       //storing all values
       }
        int sum=0;
        for(int i=0;i<n;i++)
        {
            sum=sum+a[i];
        }
        System.out.println("Sum of Elements="+sum);
    }
}

Output:


Input Functions In Scanner Class Java

We can use the following Functions



Method Inputs
nextInt() Integer
nextFloat() Float
nextDouble() Double
nextLong() Long
nextShort() Short
next() Single word
nextLine() Line of Strings
nextBoolean() Boolean

Following will help you understand:

import java.util.Scanner;    //package for Scanner Class
public class Inputtest
{
    public static void main(String[] args)
    {
        Scanner input=new Scanner(System.in);   //Object of Scanner Class
        System.out.println("Enter Any Integer");
        int x=input.nextInt();                                  //for integer
     
        System.out.println("Enter Any String");
        String name=input.next();                         //for String
     
        System.out.println("Enter Any Double Value");
        double d=input.nextDouble();                  //for Double
     
        System.out.println("Enter Any Character");
        char c = input.next().charAt(0);               //for Character
     
        System.out.println("Enter Any Float");
        float f=input.nextFloat();                         //for float
    }
 
}

Output:

Function(Method) Calling In Java

Following Program will help you understand :

public class CallingMethods
 {
    public static void main(String[] nt)
    {
        printone();
        printtwo();
        printthree();
    }

public static void printone()   //static because main is static and static function can call only static members
{
System.out.println("Print one");
}
public static void printthree()
{
System.out.println("Print Three");
}
public static void printtwo()
{
System.out.println("Print Two");
}
}

Output:



Perimeter of Circle In Java

//Following will help you understand

import java.util.Scanner;
public class Perimeter
{
    public static void main(String [] nt)

    {  float x;
    Scanner input=new Scanner(System.in);
        System.out.println("Enter the radius of circle");
        x=input.nextFloat();
        float y;
                y=2*3.142f*x;      //because of float we have used f
                System.out.printf("Perimeter of Circle %f\n",y);
    }
}

Output:


Thursday, January 19, 2017

Interface in java !!

//This program helps you to understand the working of an interface



import java.util.Scanner; //package for scanning purpose
public class Purchase
{
int num,x;
Scanner obj=  new Scanner (System.in);
public void getinfo()
{
System.out.println("Enter the amount of packets purchased: ");
num=obj.nextInt();
System.out.println("Enter amount of defective packets: ");
x=obj.nextInt();

}

public static void main(String[] args)
{
result obj1=new result();
obj1.getinfo();
obj1.amtleft();
stock obj2=new result();
obj2.stk();
obj1.rslt();
}
}
class Preturn extends Purchase
{
int ret;
public void amtleft()
{
System.out.println("Amount left: ");
ret=num-x;
System.out.println(ret);

}
}
interface stock
{
public void stk();
Scanner ob = new Scanner (System.in);

}
class result extends Preturn implements stock
{
int y;

public void stk()
{
System.out.println("Enter previous stock if any: ");


}
public void rslt()
{
y= ob.nextInt();
System.out.println("Packets to be sold : "+(y+ret));
}



}