int UCLN(int a,int b) { int r; while(b>0) { r=a %b; a=b; b=r; } return a; }            làm theo cách này giup

int UCLN(int a,int b) { int r; while(b>0) { r=a %b; a=b; b=r; } return a; }            làm theo cách này giup
Post Reply