我想請問一下你是系上哪位耶...
ID對照表沒有你...
※ 引述《sleptbeauty (太多想用的暱稱-_-||)》之銘言:
: 衛蛇麼跑不出來阿 我用了兩個多小時了>``<|還有兩題還沒寫....救命阿..
: #include<iostream>
: using std::cout;
: using std::cin;
: using std::endl;
: int gcd(int,int);
: int main()
: {
: int a;
: int b;
: cout<<"enter two integers and the bigger you should type first.."<<endl;
: cin>>a>>b;
: cout<<"the gcd is..."<<gcd(a,b)<<endl;
: return 0;
: }
: int gcd(int x,int y)
: {
: if (y=0)
: return x;
: else
: return gcd(y , x % y);
: }
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 61.59.121.131