Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- import static java.lang.Math.abs;
- public class epsilon {
- public static void main(String[] args) {
- int n = 0;
- double y0 = 1, x = 0, y, eps = 0;
- boolean isIncorrect;
- Scanner scanner = new Scanner(System.in);
- do {
- isIncorrect = false;
- System.out.println("Пожалуйста, введите число EPS (EPS > 0): ");
- try {
- eps = Double.parseDouble(scanner.nextLine());
- } catch (Exception e) {
- System.out.println("Пожалуйста, введите число. ");
- isIncorrect = true;
- }
- if (!isIncorrect && (eps <= 0)) {
- System.out.println("Число Эпсилон должно быть положительным.");
- isIncorrect = true;
- }
- } while (isIncorrect);
- System.out.println("Введите x: ");
- do {
- isIncorrect = false;
- try {
- x = Double.parseDouble(scanner.nextLine());
- } catch (Exception e) {
- System.out.println("Пожалуйста, введите число. ");
- isIncorrect = true;
- }
- } while (isIncorrect);
- do {
- y = y0;
- y0 = 0.5 * (y + (x / y));
- n = n + 1;
- } while (abs(y - y0) >= eps);
- System.out.println("Корень из x = " + y0);
- System.out.println("Число итераций: " + n);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement