下列 2 个数的最大公约数,程序的两划线处应分别填入 ________ 。 #include #include int cod(long n1,long n 2) { int t; while(n 2) {________; n1=n2;n2=t; } return ________; } void main( ) { int a,b,x; printf("Please input two numbers:"); scanf("%d%d",&a,&b); x=cod(a,b); printf("%d,%d,%d\n",a,b,x); }