visual studio code gcd函数
时间: 2024-05-30 11:04:17 浏览: 115
gcd方法代码测试
以下是 Visual Studio Code 中实现求最大公约数的代码:
```c++
#include <iostream>
using namespace std;
int gcd(int a, int b) {
if (b == 0) {
return a;
}
return gcd(b, a % b);
}
int main() {
int a, b;
cin >> a >> b;
cout << gcd(a, b) << endl;
return 0;
}
```
阅读全文