diff options
| author | DoolyBoi <[email protected]> | 2022-10-19 20:11:05 -0700 |
|---|---|---|
| committer | DoolyBoi <[email protected]> | 2022-10-19 20:11:05 -0700 |
| commit | 6adcd9c395c40309cef973369ec3c0262a103c2b (patch) | |
| tree | f2a08852197512e768dcedb9ac17890857e069fd | |
| parent | added mass and gravitational pull calculation (diff) | |
| download | cst116-lab1-abd00l4h-6adcd9c395c40309cef973369ec3c0262a103c2b.tar.xz cst116-lab1-abd00l4h-6adcd9c395c40309cef973369ec3c0262a103c2b.zip | |
added semicolon
| -rw-r--r-- | BlankConsoleLab/BlankConsoleLab.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp index 0ce3b2c..80ba6be 100644 --- a/BlankConsoleLab/BlankConsoleLab.cpp +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -65,6 +65,6 @@ int main() //calculating gravitational pull gPull = mass * 9.8; - cout << "Your kite weighs " << gPull << " kg." + cout << "Your kite weighs " << gPull << " kg."; } |