diff options
| -rw-r--r-- | cst116-Lab2-wilson-pseudo-code.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cst116-Lab2-wilson-pseudo-code.txt b/cst116-Lab2-wilson-pseudo-code.txt index 9baaa6d..f5b91c2 100644 --- a/cst116-Lab2-wilson-pseudo-code.txt +++ b/cst116-Lab2-wilson-pseudo-code.txt @@ -16,4 +16,6 @@ RUN WindSpeedFinder; RUN WindChill Chill = 35.74 + (0.6215 * CtoF) - (35.75 * (pow(WindSpeedFinder, x))) + (0.4275 * CtoF * (pow(WindSpeedFinder, x))); -DISPLAY "The wind chill is: " WindChill;
\ No newline at end of file +DISPLAY "The wind chill is: " WindChill; + +END;
\ No newline at end of file |