Browse Source

added function to get the kgV of the given numbers

remotes/origin/kgV
cxnnqr 11 months ago
parent
commit
d9ad37c8d1
  1. 1
      src/kgV/main.c

1
src/kgV/main.c

@ -6,6 +6,7 @@ int main(){
printf("add two numbers:\n"); printf("add two numbers:\n");
int firstNum = usergetd("first number: ", 0, NULL); int firstNum = usergetd("first number: ", 0, NULL);
int secondNum = usergetd("second number: ", 0, NULL); int secondNum = usergetd("second number: ", 0, NULL);
int result = kgV(firstNum, secondNum);
return 0; return 0;
Loading…
Cancel
Save