#include <iostream>
#define ll long long
using 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 ...
English Article | Word Count | Duration | Accuracy | Speed | Backspace | Error | Slogan |
---|---|---|---|---|---|---|---|
《c++快速幂》 | 270字 | 3.6分钟 | 100% | 64 CPM | 48 次 | 0 | 不及格,加强练习! |
Suggestion:
可能对按键不够熟悉,或者对输入法不够熟练所导致,不要急慢慢来,先打对把准确率提高,然后逐渐的加快速度,最后才能打准打快。
|
|||||||
Inspirational quotes: 你非草木,怎知草木无心?,你说人有心,那么人的心又在哪里呢? ——林清玄 | |||||||
What do you think of this article? Give it a rating and let it serve as a guiding light for others |