diff options
| author | JonCr <[email protected]> | 2022-10-21 23:37:56 -0700 |
|---|---|---|
| committer | JonCr <[email protected]> | 2022-10-21 23:37:56 -0700 |
| commit | f9f60a51c8c4440aebe852602f2490aa5c73614c (patch) | |
| tree | 6327933143c687961738ae7dc8465affabb593d4 /BlankConsoleLab/BlankConsoleLab.cpp | |
| parent | Update (diff) | |
| download | cst116-lab1-cognitiveshadow-f9f60a51c8c4440aebe852602f2490aa5c73614c.tar.xz cst116-lab1-cognitiveshadow-f9f60a51c8c4440aebe852602f2490aa5c73614c.zip | |
Update
Diffstat (limited to 'BlankConsoleLab/BlankConsoleLab.cpp')
| -rw-r--r-- | BlankConsoleLab/BlankConsoleLab.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp index 7297143..401079f 100644 --- a/BlankConsoleLab/BlankConsoleLab.cpp +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -9,6 +9,7 @@ using std::cout; using std::cin; using std::endl; +// Functions float GetLength(); float GetWidth(); void CalcAR(float length, float width); @@ -16,6 +17,8 @@ float CalcArea(float length, float width); float CalcMass(float area); void CalcGP(float mass); + +// Main code int main() { float length = 0; |