diff options
| author | WilliamBishopCST116 <[email protected]> | 2022-10-17 11:11:09 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-10-17 11:11:09 -0700 |
| commit | a95ce6a99f429de0e4f18aa2b5cbdf4844b53e11 (patch) | |
| tree | 610cfaf893b68474d55ae9172003ea42b21e8f6a | |
| parent | Add files via upload (diff) | |
| download | cst116-lab1-williambishopcst116-a95ce6a99f429de0e4f18aa2b5cbdf4844b53e11.tar.xz cst116-lab1-williambishopcst116-a95ce6a99f429de0e4f18aa2b5cbdf4844b53e11.zip | |
Add files via upload
| -rw-r--r-- | CST116-Lab1-Bishop-Submission2.cpp | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/CST116-Lab1-Bishop-Submission2.cpp b/CST116-Lab1-Bishop-Submission2.cpp new file mode 100644 index 0000000..817b3e6 --- /dev/null +++ b/CST116-Lab1-Bishop-Submission2.cpp @@ -0,0 +1,33 @@ +//William Bishop + +// BlankConsoleLab.cpp : This file contains the 'main' function. Program execution begins and ends there. +// + +#include <iostream> + +using namespace std; + +using std::cout; +using std::cin; +using std::endl; + +int main() +{ + int kite; + int horizontal_kitew; + int vertical_kitel; + + cout << "Please enter a width of the kite" << endl; + cin >> horizontal_kitew + cout << "Your width is: " << horizontal_kitew << endl; + cout << "Please enter your height of the kite " << endl; + cin >> vertical_kitel; + cout << "Our width and the height is: " << horizontal_kitew << "and " << vertical_kitel << endl; + + int areaofkite; + int area + + +} + |