>

Thursday, November 8, 2012

Finding Biggest From Array in Java


import java.util.Scanner;
public class ArrayMaximum {
 public static void main(String args[])
 {
     System.out.println("Enter the limit for array :");
     Scanner in=new Scanner(System.in);
     int limit=in.nextInt();
     int array[]=new int[limit];
     System.out.println("enter the values for array :");
     for(int i=0;i<array.length;i++)
     {
         array[i]=in.nextInt();
     }
         System.out.println("Values of array");
             for(int m:array)
             {
                 System.out.print(" "+m);
             }
             System.out.println();
             int max=array[0];
             for(int j=1;j<array.length;j++){
                 if((array[j])>max)
                  max=array[j];
                  else
                      max=array[0];
                
             }
             System.out.println("biggest Number in this array "+ max);
 }
}

Thursday, November 1, 2012

FOR LOOP PROGRAMS

Pattern6.java
import java.util.Scanner;
class Pattern6
    {
        public static void main(String args[])
    {   
        char s='*';
        int j,k;
        Scanner in=new Scanner(System.in);
        System.out.println("Enter the limit :");
        int limit=in.nextInt();
        for(int i=1;i<=limit;i++)
         {
            for(j=1;j<=i;j++)
             {

            System.out.print(s);
            }
            System.out.println();
        }
    }
    }
output:
Enter the limit :
5
*
**
***
****
*****
*****
****
***
**
*



Program for displaying output like this :
Enter the limit :
5
*
**
***
****
*****
Pattern5.java
import java.util.Scanner;
class Pattern6
    {
        public static void main(String args[])
    {   
        char s='*';
        int j,k;
        Scanner in=new Scanner(System.in);
        System.out.println("Enter the limit :");
        int limit=in.nextInt();
       
        for(int i=1;i<=limit;i++)
         {
            for(j=1;j<=i;j++)
             {

            System.out.print(s);
            }
            System.out.println();

       
        }
       
    }
    }
Java Program to display numbers as following :
Print Pattern:
 1  2  3  4  5  6  7  8  9  10
 2  4  6  8  10  12  14  16  18  20
 3  6  9  12  15  18  21  24  27  30
 4  8  12  16  20  24  28  32  36  40
 5  10  15  20  25  30  35  40  45  50
 6  12  18  24  30  36  42  48  54  60
 7  14  21  28  35  42  49  56  63  70
 8  16  24  32  40  48  56  64  72  80
 9  18  27  36  45  54  63  72  81  90
 10  20  30  40  50  60  70  80  90  100
PrintPattern.java
class PrintPattern
    {
        public static void main(String args[])
    {
        int i,j;       
            for(i=1;i<=10;i++)
                {
                    for(j=1;j<=10;j++)
                   
                        {
                          System.out.print("  "+ i*j);
                        }
                System.out.println();
                }
    }
    }

Wednesday, August 29, 2012

Print A to Z Characters in Java

public class PrintAlphabets {
    public static void main(String[] args) {
        char ch;
        for(ch='a';ch<'z';ch++){
            System.out.println("Letters from A to Z: "+ch);
        }
    }
}

Microsoft and Apple

Microsoft Has Changed its logo after 25 years of software industry... here is its new logo..

What is the output?

class ConditionalIf{
 
public static void main(String args[]){

int i = 1;

int j = i++;

if ((i == ++j) | (i++ == j)) {

  i += j;

}

System.out.println("i = " + i);
} }

Factorial using While in Java

import java.util.Scanner;

class FactorialWhile{

 public static void main(String args[]){

    int fact=1,num,i=1;

    System.out.println("Enter the number:");

   Scanner in=new Scanner(System.in);

   num=in.nextInt();

  while(i<=num){

    fact=fact*i;

    i++;
}

  System.out.println("factorial of given number is "+fact);
}  }

File creation in Java

import java.io.*;

public class FileCreation {

public static void main(String args[]) throws IOException{ 


// throws IOException to handle Exception

   File f=new File("F:/sam.txt"); //F is the drive and sam.txt is the name of file...

    if(!f.exists()){

     f.createNewFile();
 
   System.out.println("File created successfully");
         }
   else

   System.out.println("file creation error/file exists already");
                                        }
                                            }