#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
cout<<"请输入上限:";
cin>>n;
cout<<"以下为"<<n<<"以内的素数"<<endl;
vector<bool>nums(n+1,1);
nums[0]=0;
nums[1]=0;
for(int i=2...
English Article | Word Count | Duration | Accuracy | Speed | Backspace | Error | Slogan |
---|---|---|---|---|---|---|---|
《计算n以内的素数》 | 437字 | 0.5分钟 | 1% | 6 CPM | 0 次 | 329 | 不及格,错误太多! |
The wrong word this time: #,i,n,c,l,u,d,e,<,b,i,t,s,/,s,t,d,c,+,+,.,h,>,u,s,i,n,g,,n,a,m,e,s,p,a,c,,s,t,d,;,i,n,t,,m,a,i,n,(,),{,i,n,t,,n,;,c,o,u,t,<,<,",请,输,入,上,限,:,",;,c,i,n,>,>,n,;,c,o,u,t,<,<,",以,下,为,",<,<,n,<,<,",以,内,的,素,数,",<,<,e,n,d,l,;,v,e,c,t,o,r,<,b,o,o,l,>,n,u,m,s,(,n,+,1,,,1,),;,n,u,m,s,[,0,],=,0,;,n,u,m,s,[,1,],=,0,;,f,o,r,(,i,n,t,,i,=,2,;,i,<,=,n,;,i,+,+,),{,i,f,(,n,u,m,s,[,i,],>,0,),{,f,o,r,(,i,n,t,,j,=,i,*,i,;,j,<,=,n,;,j,+,=,i,),{,n,u,m,s,[,j,],=,0,;,},},},i,n,t,,c,n,t,=,0,;,f,o,r,(,i,n,t,,i,=,0,;,i,<,=, | |||||||
Suggestion:
正确率比较低,多观察一下出错的字加以修正,一般来讲都要达到95%以上比较好。
总的来说速度上可能不是很快,多练习键位、或英文文章巩固一下,然后试着对应的输入法练习上,多增加词组等、一次性多字的输出,这样可以总体上提高部份速度。
|
|||||||
Inspirational quotes: 最甜美的是爱情,最苦涩的也是爱情。 ——菲·贝利 | |||||||
What do you think of this article? Give it a rating and let it serve as a guiding light for others |