c++快速幂 2023-07-04 08:08 瀏覽數:657 來源:小键人13465383 馬上練習 收藏 舉報 改錯字 #include <iostream>#define ll long longusing namespace std;ll Quick_pow(ll a,ll b){ ll ans=1; while(b){ if((b&1) == 1){ ans *= a; } a *= a; b >>= 1; } return ans;}int main(){ ll a,b; while(cin>>a>>b){ cout<<Quick_pow(a,b)<<endl; } return 0; } 下壹篇:苦瓜-陈奕迅 上壹篇:让孩子们爱上骑车