📌  相关文章
📜  在函数模板特化 &#39;std::__1::__gcd 的实例化中<int>&#39; 在此处请求 - 无论代码示例

📅  最后修改于: 2022-03-11 14:58:59.732000             🧑  作者: Mango

代码示例1
#include 
#include 
#include 

using namespace std;

int main() {
int n;
cin >> n;
vector a(n);

for(int i = 0; i < n; ++i)
    cin >> a[i];

int ans = a[0];
for(int i = 1; i < n; ++i)
   ans = gcd(ans, a[i]);

cout << ans << endl;

return 0;
}