#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字 | 6.4分钟 | 100% | 35 CPM | 125 次 | 1 | 不及格,加强练习! |
The wrong word this time: 1 | |||||||
Suggestion:
可能对按键不够熟悉,或者对输入法不够熟练所导致,不要急慢慢来,先打对把准确率提高,然后逐渐的加快速度,最后才能打准打快。
总的来说速度上可能不是很快,多练习键位、或英文文章巩固一下,然后试着对应的输入法练习上,多增加词组等、一次性多字的输出,这样可以总体上提高部份速度。
|
|||||||
Inspirational quotes: 不是自己出头的时候,就不要插嘴说话,什么事都想要插嘴的人,就是没有自信。 ——易卜生 | |||||||
What do you think of this article? Give it a rating and let it serve as a guiding light for others |