求最大公约数c语言

以下是用 C 语言实现求最大公约数的示例代码:```c include int gcd(int a, int b) { int temp; while (b != 0)