Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 262 Bytes

File metadata and controls

7 lines (5 loc) · 262 Bytes

Square root

Java implementation of newton's' method of computing square root.

Requirements

  1. the solution uses only four basic arithmetic operations (+, -, *, / ) and comparison;
  2. the solution provides a result with given precision (0 <= k >= 10000);