标签:c style class blog code java
#include <stdlib.h> #include <stdio.h> int main() { int b,c,y; system("color 0A"); printf("输入被除数和除数:"); scanf("%d%d",&b,&c); y=b%c; if(y==0) printf("最大公约数是:%d\n",c); else { do { b=c; c=y; y=b%c; } while(y!=0); printf("最大公约数是:%d\n",c); } return 0; }
标签:c style class blog code java
原文地址:http://www.cnblogs.com/westsidecn/p/3763055.html