diff --git a/src/excercises/celsius.cc b/src/excercises/celsius.cc deleted file mode 100644 index 4c44914..0000000 --- a/src/excercises/celsius.cc +++ /dev/null @@ -1,15 +0,0 @@ - -#include - -using namespace std; - -int main() { - - int fahrenheit; - cout << "Enter fahrenheit value: "; - cin >> fahrenheit; - double celsius = (fahrenheit - 32) / 1.8; - cout << "Celsius: " << celsius; - - return 0; -} diff --git a/src/excercises/circles.cc b/src/excercises/circles.cc deleted file mode 100644 index 64e476e..0000000 --- a/src/excercises/circles.cc +++ /dev/null @@ -1,15 +0,0 @@ -#include -#include - -using namespace std; - -int main() { - - int radius; - cout << "Enter radius of circle: "; - cin >> radius; - - // I'm awesome, the teacher didn't know about the PI constant in cmath - cout << "Result: " << M_PI * pow(radius, 2); - return 0; -} diff --git a/src/main.cc b/src/main.cc deleted file mode 100644 index 0bcfa04..0000000 --- a/src/main.cc +++ /dev/null @@ -1,10 +0,0 @@ -#include - -using namespace std; - -int main() { - - - - return 0; -}