Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
clarkh9 committed Dec 22, 2022
1 parent 4e56ee6 commit ea42be3
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions include/sqrt.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#pragma once

#ifndef SQRT
#define SQRT
#include <iostream>
#include <stdint.h>
#include <stdlib.h>

typedef struct
{
static double TOLERANCE;
static double ERROR;
static double RESULT;
static double LATEST_RESULT;
static double RESULT;
static int MAX_ITERATION;
static int ITERATION;

} NEWTON;

#endif

0 comments on commit ea42be3

Please sign in to comment.