aboutsummaryrefslogtreecommitdiffstats
path: root/ee1301/wk3/lab3/RtBab.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ee1301/wk3/lab3/RtBab.cpp')
-rw-r--r--ee1301/wk3/lab3/RtBab.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/ee1301/wk3/lab3/RtBab.cpp b/ee1301/wk3/lab3/RtBab.cpp
new file mode 100644
index 0000000..d60beda
--- /dev/null
+++ b/ee1301/wk3/lab3/RtBab.cpp
@@ -0,0 +1,23 @@
+#include <iostream>
+#include <cmath>
+using namespace std;
+
+double genNewGuess(double n, double oldGuess); {
+ New=(oldGuess+n/oldGuess)/2;
+ oldGuess=New;
+ return New;
+}
+int main () {
+ double temp;
+ cout << "Enter the Number to find square root: ";
+ cin >> n;
+ if (n==0) {
+ cout << "Nah fam." << endl;
+ return -1
+ }
+ cout << "Guessing..."
+ double real=sqrt(n);
+ do {
+
+ } (while abs(New-real)/real<0.1)
+} \ No newline at end of file