From 14a59e865e271f400c9084eb534fd94acecf74f6 Mon Sep 17 00:00:00 2001 From: cxnnqr Date: Tue, 6 Feb 2024 13:44:20 +0100 Subject: [PATCH] refactoring: added comments --- src/ggT/main.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/ggT/main.c b/src/ggT/main.c index e9bc365..e32be86 100644 --- a/src/ggT/main.c +++ b/src/ggT/main.c @@ -3,10 +3,16 @@ #include int main(){ + + // Getting user input for the two numbers printf("Please add the two numbers you want the ggT of:\n"); int firstNum = usergetd("first number: ", 0, NULL); int secondNum = usergetd("second number: ", 0, NULL); + + // Calculating the ggT of those two numbers int result = ggT(firstNum, secondNum); + + // Print the result printf("The ggT of %d and %d is: %d\n", firstNum, secondNum, result); return 0;