Advertisement
Guest User

Untitled

a guest
Feb 28th, 2020
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Program {
  4.   public static void main(String[] args) {
  5.     Scanner sc = new Scanner(System.in);
  6.     double dollars = sc.nextDouble();
  7.     double euro = dollars * 0.88;
  8.     System.out.println(euro);
  9.   }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement