Advertisement
Vankata17

EURO TO BGN

Jan 14th, 2020
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.35 KB | None | 0 0
  1. import java.util.Scanner;
  2. public class SnN {
  3.     public static void main(String[] args) {
  4.        Scanner scan = new Scanner(System.in);
  5.         System.out.print("LEV:");
  6.      int num1 = Integer.parseInt(scan.nextLine());
  7.      int num2 = 2;
  8.         System.out.print("EURO :");
  9.      int euro = num1 * num2;
  10.         System.out.println(euro);
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement