From 8daf9f3e5b7dcccc0d01103a4db031625a30ba83 Mon Sep 17 00:00:00 2001 From: WilliamBishopCST116 <114703314+WilliamBishopCST116@users.noreply.github.com> Date: Mon, 17 Oct 2022 11:05:49 -0700 Subject: Add files via upload --- CST116-Lab1-Bishop-Submission1.cpp | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 CST116-Lab1-Bishop-Submission1.cpp diff --git a/CST116-Lab1-Bishop-Submission1.cpp b/CST116-Lab1-Bishop-Submission1.cpp new file mode 100644 index 0000000..7b934cb --- /dev/null +++ b/CST116-Lab1-Bishop-Submission1.cpp @@ -0,0 +1,30 @@ +//William Bishop +//williambishop@oit.edu + +// BlankConsoleLab.cpp : This file contains the 'main' function. Program execution begins and ends there. +// + +#include + +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; + + +} + -- cgit v1.2.3