From dcd9cac5737920818b489a215b0427b32c4a1341 Mon Sep 17 00:00:00 2001 From: Jay-Jay Rom Date: Mon, 31 Aug 2026 21:45:38 -0700 Subject: [PATCH] Describe the new functionality, closes #xx --- main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main.cpp b/main.cpp index 5411e7a3..babab761 100644 --- a/main.cpp +++ b/main.cpp @@ -20,6 +20,9 @@ int main() cout << "Remainder: " << x % y << endl; cout << "Square Root: " << sqrt(x) << endl; cout << "Square: " << pow(x, y) << endl; + cout << "Double: " << x * x << y * y << endl; + +// Math is like an AI that determines the numbers return 0; }