From 6ae81ee58a1d2ffa8f8f5fe9dc45a8f064c31c4d Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Fri, 9 Sep 2022 15:19:13 -0600 Subject: added code --- hw2/snowfall.cpp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 hw2/snowfall.cpp (limited to 'hw2/snowfall.cpp') diff --git a/hw2/snowfall.cpp b/hw2/snowfall.cpp new file mode 100644 index 0000000..2d54a90 --- /dev/null +++ b/hw2/snowfall.cpp @@ -0,0 +1,20 @@ +// CSCI 1300 Fall 2022 +// Author: Navan Chauhan +// Recitation: 307 – TA name +// Homework 2 - Problem 4 + +#include + +using namespace std; + +int main() { + int num_days, breck, vail, copper; + + cout << "How many days in the future would you like a prediction for?\n"; + cin >> num_days; + breck = 25+(10*num_days)-(5*num_days); + vail = 28+(14*num_days)-(2*num_days); + copper = 40+(5*num_days)-(3*num_days); + cout << "Breckenridge will have " << breck << " inches, Vail will have " << vail << " inches, and Copper Mountain will have " << copper << " inches."; + return 0; +} -- cgit v1.2.3