Answer to Question #260966 in Java | JSP | JSF for Bjoy

Question #260966

1. Create a program that will convert the input dollar(s) into its equivalent peso. One dollar is approximately equal to 50.60 pesos. Then display The result.



Sample output:



The equivalent of $100 into is Pho 5, 060.00

1
Expert's answer
2021-11-04T04:47:40-0400
import java.util.Scanner;
public class Main
{
	public static void main(String[] args) {
		Scanner in=new Scanner(System.in);
		double dollars;
		System.out.println("Enter dollars: ");
		dollars=in.nextDouble();
		
		double peso=dollars*50.60;
		
		System.out.println("The equivalent of $"+dollars+" is Pho "+peso);
	}
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS