Skip to content

CS 2810 - Project #6

Write a MIPS Assembly Language Program that calculates an approximation of the value of PI using the series

PI = 4 - (4/3) + (4/5) - (4/7) + (4/9) - (4/11) + ...

The program should allow the user to input the number of terms of the series to use in the calculation. The program should repeat until a value less than 1 is input for the number of terms.  Name your file LlllProj06.asm.