当前位置:首页>维修大全>生活>

c语言求最大公约数程序用while

c语言求最大公约数程序用while

更新时间:2023-05-11 08:40:49

c语言求最大公约数程序用while

#include <stdio.h> int main(void) { int a,b,t; scanf("%d%d",&a,&b); while(a%b) { t=b; b=a%b; a=t; } printf("%d ",b); return 0; }

更多栏目