COMP2113
COMP2113_ENGG1340 Programming technologies and Computer programming II [Section 2BC] [2023]
Loading...
Searching...
No Matches
gcd.cpp File Reference
#include <iostream>
#include "gcd.h"
Include dependency graph for gcd.cpp:

Go to the source code of this file.

Functions

int gcd (int a, int b)
 

Function Documentation

◆ gcd()

int gcd ( int a,
int b )

Definition at line 7 of file gcd.cpp.

7 {
8 while(a != b) {
9 if(a > b) {
10 a -= b;
11 } else {
12 b -= a;
13 }
14 }
15 return a;
16}