2014秋C++11週目のプロジェクト2参考-最大公約数を求めます.

2027 ワード

レッスンホームページはhttp://blog.csdn.net/sxhelijian/article/details/39152703授業資源は雲学堂の「賀先生教室」で同時に展示されています.使用しているアカウントは課程のホームページで確認してください. 
【項目2-最大公約数を求める】(1)二つの数を入力し、最大公約数を求める
#include <iostream>
using namespace std;
//        (     )


int main()
{
	int a,b,g;
	cin>>a>>b;
	g=gcd(a,b);
	cout<<"      : "<<g;
	return 0;
}
int gcd(int x,int y) //                ,      ,    。   main  
{  }
参考解答:
#include <iostream>
using namespace std;
//        (     )
int gcd(int,int);
int main()
{
    int a,b,g;
    cin>>a>>b;
    g=gcd(a,b);
    cout<<"      : "<<g;
    return 0;
}

int gcd(int x,int y) //      ,         
{
    int r;
    while(y>0)
    {
        r=x%y;
        x=y;
        y=r;
    }
    return x;
}
(2)上記の手順に基づいて、関数gcds関数の声明と定義を追加し、4の最大公約数を求める機能を実現する.
int gcds(int x,int y,int z,int w)   //  gcd()         
{  }
ヒント:①gcd関数はすでに2つの最大公約数を求める機能を実現した以上、gcdsはgcdを呼び出してそれぞれ2つのペアの最大公約数を求め、さらに最大公約数の最大公約数を求めます.②main関数を変更して、新しい定義の関数のテストを完了します.
参考解答:
#include <iostream>
using namespace std;
//        (     )
int gcd(int,int);
int gcds(int,int,int,int);
int main()
{
    int a,b,c,d;
    cin>>a>>b>>c>>d;
    cout<<"      : "<<gcds(a,b,c,d)<<endl;
    return 0;
}
 
int gcd(int x,int y) //      ,         
{
    int r;
    while(y>0)
    {
        r=x%y;
        x=y;
        y=r;
    }
    return x;
}
 
int gcds(int x,int y,int z,int w)//  gcd()         
{
    int g1,g2,g;
    g1=gcd(x,y);
    g2=gcd(z,w);
    g=gcd(g1,g2);
    return g;
}
(3)シングルステップデバッグツールを利用して、Step intoから関数内部までプログラムの動作を観察し、関数「内部」に入ってその運行状況を観察する方法を習得します.
===================        CSDN    =================
|== IT                  (     ) ==|
|== C++                  (     ) ==|
|==     ——《    ——  IT      》    ==|
=====  IT       ,                =====