Archive

Archive for January 10, 2009

Java Program to sort an array of strings – Q20

January 10, 2009 Leave a comment

Q20: Java Program to sort an array of strings

class SortString{
	static String arr[] = { "Now", "is", "the", "time", "for", 
    "all", "good", "men", "to", "come", 
    "to", "the", "aid", "of", "their", 
    "country" };
	
	public static void main(String args[]){
		for(int j=0; j<arr.length; j++){
			for(int i=j; i<arr.length; i++){
				if(arr[i].compareTo(arr[j]) < 0){
					String t = arr[j];
					arr[j] = arr[i];
					arr[i] = t;
				}
			}
			System.out.println(arr[j]);
		}
	}
}

… from College notes (BCA/MCA assignments):


Advertisement

Java Program to calculate income tax on salary – Q19

January 10, 2009 Leave a comment

Q19: Java Program to calculate income tax on salary:
( sal < 1.5lac = 15%, 1.5 < sal 2.5lac = 30% )

import javax.swing.*;

class inc_tax{
	public static void main(String args[]){
		String inp;
		inp = JOptionPane.showInputDialog("Enter Salary: ");
		
		int sal;
		sal = Integer.parseInt(inp);
		
		double tax;
		if(sal < 150000)
			tax = sal * 15/100;
		else if(sal >= 150000 && sal < 250000)
			tax = sal * 20/100;
		else
			tax = sal * 30/100;
		
		System.out.println("Tax on Annual salary " + sal + " is: " + tax);
	}
}

… from College notes (BCA/MCA assignments):