Write the algorithm in a flow chart. The arithmetic operations are limited to only addition, subtraction, multiplication, and division. You can use chart software such as Lucidchart, powerpoint, or Visio. Please export it to a pdf file (e.g., Q3.pdf)
Implement the algorithm in C. Again the arithmetic operations are limited to only addition, subtraction, multiplication (in Q3 not in Q4), and division (in Q4 not in Q3). (e.g., Q3.c)
Implement the algorithm for MARIE architecture (e.g., Q3_MARIE.mas)
The numbers of instructions in Q3_INSTRS.docx (Word document)
Q4. Logarithm (Iterative algorithm) - Use Q2
Get a user input of two positive integer numbers: A and B where A is a base and B is an exponent of A
Calculate C= Log base A of B
Print C
Test case: A=2, B=16
Output should be 4