Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
1.00/5 (4 votes)
See more:
i have my final year project on this ...plz reply fasttt
Posted

1 solution

Here's the framework, you'll need to add in the final logic.
Good luck!

Java
/**
 * Example java program
 * Changelog:
 * 4/25/2008
 *  -Original post by SpacixOne
 * 4/30/2008 
 *  -Updated Exception handler from Greeeg's suggestion.
 *  -Changed to more appropriate namespace
 * 11/2/2009
 *  - Ported original code from C# to java
 */

package NeedsCode;

/**
 * Example java program
 * @author anon
 */
public class Main {

    /**
     * Main entry point for program.
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        throw new UnsupportedOperationException(
                "The program code needs to be implemented.");
    }
}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900