Showing posts with label JAVA program to convert rupees to dollar. Show all posts
Showing posts with label JAVA program to convert rupees to dollar. Show all posts

JAVA program to convert rupees to dollar

/*
1. Write a JAVA program to convert rupees to dollar. 60 rupees=1 dollar
*/

class Convert_pract1_1
{
public static void main(String args[])
       {
int rs =Integer.parseInt(args[0]);
float dlr;
dlr= (float)rs/60;
System.out.println("Rs = "+rs);
System.out.println("Dollar = "+dlr);
}
}