ZY哥的快速幂

tech2024-07-22  46

void quick_power(int x,int y){ //x为底数,y为指数 int ans = 1; while(y){ if(y & 1 == 1) ans += x; x = x * x; y >>= 1; } cout<<ans<<endl; }
最新回复(0)