Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.*;
- public class targil1
- {
- static Scanner reader = new Scanner(System.in);
- /**
- * @param args
- */
- public static void main(String[] args)
- {
- int x1;
- double x2;
- System.out.println("enter first num");
- x1 = reader.nextInt();
- System.out.println("enter sec num");
- x2 = reader.nextDouble();
- double x3 = x1*x2;
- System.out.println (x1);
- System.out.println (x2);
- System.out.println (x3);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment