COMP2113
COMP2113_ENGG1340 Programming technologies and Computer programming II [Section 2BC] [2023]
Loading...
Searching...
No Matches
lcm.h
Go to the documentation of this file.
1// lcm.h
2#ifndef LCM_H
3#define LCM_H
4
5int lcm(int a, int b);
6
7#endif
int lcm(int a, int b)
Definition lcm.cpp:8