Board logo

標題: 因數分解 (六) - 兩數求最大公因數 [打印本頁]

作者: 陳品肇    時間: 2018-8-11 13:05     標題: 因數分解 (六) - 兩數求最大公因數

讓使用者任意輸入兩個正整數, 求它們的最大公因數.
[attach]4655[/attach]
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x, y, smaller, maxf;
  7.     cout<<"請輸入第一個數: ";
  8.     cin>>x;
  9.     cout<<"請輸入第二個數: ";
  10.     cin>>y;
  11.     smaller=(x<y)?x:y;
  12.     for(int i=1; i<=smaller; i++)
  13.     {
  14.          if(x%i==0 && y%i==0)
  15.          {
  16.               maxf=i;
  17.          }
  18.     }
  19.     cout<<x<<"與"<<y<<"的最大公因數是: "<<maxf<<endl;
  20.     system("pause");
  21.     return 0;
  22. }
複製代碼

作者: 蔡依宸    時間: 2018-8-11 16:27

此帖僅作者可見
作者: 陳柏霖    時間: 2018-8-11 16:29

此帖僅作者可見
作者: 譚詩澐    時間: 2018-8-11 16:30

此帖僅作者可見
作者: 戴偉宸    時間: 2018-8-11 16:32

此帖僅作者可見
作者: 戴唯陞    時間: 2018-8-11 16:34

此帖僅作者可見
作者: 蔡季庭    時間: 2018-8-11 16:34

此帖僅作者可見
作者: 戴安利    時間: 2018-8-11 16:37

此帖僅作者可見




歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2