Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Created by Anatoliy on 09.07.2016.
- * Task 4.3.2
- */
- import java.util.Scanner;
- public class Task4 {
- public static void main(String[] args) {
- Scanner in = new Scanner(System.in);
- double x = in.nextInt();
- double y = in.nextInt();
- double d = Math.pow(x, 4) - Math.sqrt(6 * x - Math.pow(y, 3));
- double e = 1 / (y - (1 / (x - Math.pow(2, y))));
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement