diff options
| author | jacobdw22 <[email protected]> | 2022-11-02 01:15:09 -0700 |
|---|---|---|
| committer | jacobdw22 <[email protected]> | 2022-11-02 01:15:09 -0700 |
| commit | ae45b742d5a5e9f3109c3e0b12a499e6539d0355 (patch) | |
| tree | 6e02dade74456b9b506313f6f9ffa9e2f4d19b9d /BlankConsoleLab/BlankConsoleLab.cpp | |
| parent | Simple changes (diff) | |
| download | cst116-lab2-jacobdw22-ae45b742d5a5e9f3109c3e0b12a499e6539d0355.tar.xz cst116-lab2-jacobdw22-ae45b742d5a5e9f3109c3e0b12a499e6539d0355.zip | |
simple changes
Diffstat (limited to 'BlankConsoleLab/BlankConsoleLab.cpp')
| -rw-r--r-- | BlankConsoleLab/BlankConsoleLab.cpp | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp index c448418..bac87bf 100644 --- a/BlankConsoleLab/BlankConsoleLab.cpp +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -4,6 +4,7 @@ #include <iostream> #include <stdio.h> /* printf */ #include <math.h> /* pow */ +#include <cmath> /* pow */ using namespace std; @@ -14,14 +15,23 @@ using std::cin; using std::endl; -const float FMAX = 121; +const float FMAX = 121; const float FMIN = -80; const float CMAX = 49.5; -const float CMIN = -62; +const float CMIN = -62; //Set values for minimum and maximum temperatures. + + + + + +int C_to_F(int Celsius) { + +} int main() { + int Celsius = 0; cout << "Hello World!\n"; } |