#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.0分钟 | 100% | 176 CPM | 21 次 | 1 | 良好,向更快挑战! |
The wrong word this time: } | |||||||
Suggestion:
可能对按键不够熟悉,或者对输入法不够熟练所导致,不要急慢慢来,先打对把准确率提高,然后逐渐的加快速度,最后才能打准打快。
|
|||||||
Inspirational quotes: 爱是教育的灵魂,只有融入了爱的教育才是真正的教育, 以真诚拥抱每位学生,用爱心谱写动人乐章。 ——岱丽萍 | |||||||
What do you think of this article? Give it a rating and let it serve as a guiding light for others |