diff --git a/src/a.out b/src/a.out new file mode 100755 index 0000000..ce107f1 Binary files /dev/null and b/src/a.out differ diff --git a/src/farenheitToCelsius.cpp b/src/farenheitToCelsius.cpp new file mode 100644 index 0000000..21017a5 --- /dev/null +++ b/src/farenheitToCelsius.cpp @@ -0,0 +1,14 @@ +#include +using namespace std; + +int main() +{ + cout << "Enter the farenheit value (just the value)" << endl; + float f; + cin >> f; + float c; + c = (f-32) * 5.0; + c = c/9.0; + cout << c << endl; + return 0; +} \ No newline at end of file