Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. package ProstiPresmqtaniq;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class UsdToBGN {
  6. public static void main(String[] args) {
  7. Scanner scanner = new Scanner(System.in);
  8. double USD = Double.parseDouble(scanner.nextLine());
  9. double BGN = 1.79549;
  10. double rezult = USD * BGN;
  11. System.out.printf("%.2f", rezult);
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement