Buat Program Utama yang memanggil kelas msdie.py dengan
1. Input: Nilai awal dari 2 Dadu
2. Proses: Roll 2 dadu tersebut
3. Output: Jumlah dari nilai 2 dadu tersebut
Write a program that approximates the value of Π by summing the terms of this series:
4/1 – 4/3 + 4/5 – 4/7 + 4/9 – 4/11 +…
The program should prompt the user for n, the number of terms to sum, and then output the sum of the first n terms of this series. Have your program subtract the approximation from the value of math.pi to see how accurate it is.