ADVT POST

Simple Interest java program

SIMPLE INTEREST JAVA PROGRAM
java download tutorial program simple intrest

public class b_simpleintrest {

    /**
     * @param args created in eclipse
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        int si,p,r,t;
        p=100;
        r=10;
        t=2;
si=(p*r*t)/100;
System.out.println("simple interest is = "+si);
    }

}

Share on Google Plus
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment

Note: only a member of this blog may post a comment.