文件名称:求最大公约数
文件大小:249B
文件格式:TXT
更新时间:2015-11-24 03:20:04
最大公约数
用连续整数检测法求两个整数的最大公约数a:if(m%t==0) {if(n%t!=0) {t--; goto a;} else printf("%d",t); } else {t--; goto a;}}
文件名称:求最大公约数
文件大小:249B
文件格式:TXT
更新时间:2015-11-24 03:20:04
最大公约数
用连续整数检测法求两个整数的最大公约数a:if(m%t==0) {if(n%t!=0) {t--; goto a;} else printf("%d",t); } else {t--; goto a;}}