diff options
| author | tafaar <[email protected]> | 2022-11-08 17:48:28 -0800 |
|---|---|---|
| committer | tafaar <[email protected]> | 2022-11-08 17:48:28 -0800 |
| commit | 21f70332eb30fe016dff2a0c67605d045dba279c (patch) | |
| tree | 16e2e5af07c859f74aca240303d5a1c515129467 /BlankConsoleLab/BlankConsoleLab.cpp | |
| parent | added check wind function (diff) | |
| download | cst116-lab2-hill-21f70332eb30fe016dff2a0c67605d045dba279c.tar.xz cst116-lab2-hill-21f70332eb30fe016dff2a0c67605d045dba279c.zip | |
created calculate windchill function
Diffstat (limited to 'BlankConsoleLab/BlankConsoleLab.cpp')
| -rw-r--r-- | BlankConsoleLab/BlankConsoleLab.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp index a008590..fd50cc8 100644 --- a/BlankConsoleLab/BlankConsoleLab.cpp +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -49,6 +49,12 @@ bool CheckWindSpeed(float& input) { } +float CalculateWindChill(float fahrenheit, float speed) { + + + +} + int main() { cout << "Please enter a temperature between -80 to 121 degrees fahrenheit, or -62 and 49.5 degrees celsius." << endl; |