最大公因數

文章推薦指數: 80 %
投票人數:10人

gcd .cpp // 最大公因數:輸入兩個正整數,求其最大公因數 #include int main () { int x, y, r; cout << "請輸入兩個正整數: "; cin >> x >> y; if(x < y) //讓x是 ... 最大公因數 小程式範例之1─最大公因數 gcd.cpp 原始程式碼: //gcd.cpp //最大公因數:輸入兩個



請為這篇文章評分?