Exercise: Basic Operations and Syntax
This exercise is designed to reinforce your understanding of basic operations and syntax in C#. You will implement a simple console application that performs arithmetic operations, handles user input, and displays results.
Instruction: Complete the following tasks in the provided code structure.
Task 1: Arithmetic Operations
Example 1C#
Task 2: User Input Handling
Example 2C#
Task 3: Complete Newton Raphson algorithm for computing the squareroot of a number
Example 3C#
Task 4: Modify the Newton Raphson algorithm in Task 3 to not exceed 10 iterations. Hint: Either change to for loop, or declare a iteration counter int i = 0 and break when it equals the maximum iteration