Advertisement
Sauka1337

Untitled

Sep 25th, 2023
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.53 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class var_27_task_3 {
  4.  
  5.     public static void main(String[] args){
  6.  
  7.         Scanner scanner = new Scanner(System.in);
  8.  
  9.         boolean isIncorrect;    
  10.         int precision = 0;
  11.  
  12.         do {
  13.             System.out.print("Enter precision (number of iterations) : ");
  14.             isIncorrect = false;
  15.             try {
  16.                 precision = Integer.parseInt(scanner.nextLine());
  17.             } catch (NumberFormatException exception) {
  18.                 isIncorrect = true;
  19.                
  20.                 System.err.println("Input Error. Check if the data is correct.");
  21.             }
  22.            
  23.            
  24.             if (!isIncorrect && (precision <= 0)) {
  25.                 isIncorrect = true;
  26.                
  27.                 System.err.println("Input Error. Check if the data is correct.");
  28.             }
  29.         } while (isIncorrect);
  30.  
  31.         scanner.close();
  32.  
  33.         double pi = 0.0;
  34.         float numerator = 1;
  35.         float firstDenominator = 1;
  36.         float secondDenominator = 3;
  37.  
  38.         for (int i = 0; i < precision; i++) {
  39.             for(int k = 0; k < 3; k++){
  40.                 if (k < 2){
  41.                     pi += numerator/(firstDenominator*secondDenominator);    
  42.                 } else {
  43.                     pi -= numerator/(firstDenominator*secondDenominator);
  44.                 }
  45.                 firstDenominator+=4;
  46.                 secondDenominator+=4;
  47.             }
  48.         }
  49.  
  50.         System.out.println("Pi value = " + pi*8);
  51.  
  52.     }
  53.    
  54. }
  55.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement