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; }

大家还看了
也许喜欢
更多栏目

© 2021 3dmxku.com,All Rights Reserved.