18. JAVA Program to convert the Dollars into Rupees .
How does this program work?
- This program will help you to convert Dollars into Rupees in easy way using java.
Here is the code
//To convert Dollars into Rupees.
import java.util.Scanner;public class Dollar
{
public static void main(String[] args)
{
double a,b,dollar=71.16;
System.out.println("Enter dollars:");
Scanner obj= new Scanner(System.in);
a = obj.nextDouble();
b = a *dollar;
System.out.println("Convert Rupees is :" +b);
}
}