返回列表 發帖

有哪些因數 (四) - 求公因數

本帖最後由 鄭繼威 於 2022-11-25 00:23 編輯

[隨堂測驗] 有哪些因數 (二) - 共有幾個因數

原本判斷一個數字整除就好了,現在判斷兩個就好了呀~
16~21行//取得最小的數字只是為了增進效能而已

讓使用者任意輸入兩正整數, 電腦回應它們有那些公因數.
執行畫面如下:

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {  
  6.     re:
  7.     int x, y;
  8.     cout<<"請輸入第一個數: ";
  9.     cin>>x;
  10.     cout<<"請輸入第二個數: ";
  11.     cin>>y;

  12.     //取得最小的數字
  13.     int smaller;

  14.     if(x<y){
  15.         smaller=x;
  16.      }
  17.      else{
  18.         smaller=y;
  19.     }

  20.     cout<<x<<"與"<<y<<"的公因數有: ";
  21.     //for 1~最小的那個數(smaller)
  22.     for(int i=1; i<=smaller; i++)
  23.     {
  24.         //判斷有沒有整除( 餘數為0代表整除)
  25.         if(x%i==0 && y%i==0)
  26.         {
  27.             cout<<i<<" ";
  28.         }
  29.     }
  30.     goto re;
  31.     return 0;   
  32. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表