📜  c++ 程序查找 3 个数字的 gcd - C++ 代码示例

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

代码示例1
#include
int main() {    
  int a,b,c,hcf,st;
  printf("Enter three numbers : ");
  scanf("%d,%d,%d", &a,&b,&c);
  st=a=1;hcf--)     {        
    if (a%hcf==0 && b%hcf==0 && c%hcf==0)
      break;
  }
  printf("%d",hcf); return 0;
}