#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b,c,d;
for(int i=1000; i<=9999; i++)
{
a = i%10;
b = i%10/10;
c = i%10/100;
d = i/1000;
if(a==d && b==c)
{
cout <<i <<endl;
}
}
return 0...
English Article | Word Count | Duration | Accuracy | Speed | Backspace | Error | Slogan |
---|---|---|---|---|---|---|---|
《c++ 10.0》 | 203字 | 10.0分钟 | 8% | 56 CPM | 0 次 | 172 | 不及格,错误太多! |
The wrong word this time: s,t,d,c,+,+,.,h,>,u,s,i,n,g,,n,a,m,e,s,p,a,c,e,,s,t,d,;,i,n,t,,m,a,i,n,(,),{,i,n,t,,a,,,b,,,c,,,d,;,f,o,r,(,i,n,t,,i,=,1,0,0,0,;,,i,<,=,9,9,9,9,;,,i,+,+,),{,a,,=,,i,%,1,0,;,b,,=,,i,%,1,0,/,1,0,;,c,,=,,i,%,1,0,/,1,0,0,;,d,,=,,i,/,1,0,0,0,;,i,f,(,a,=,=,d,,&,&,,b,=,=,c,),{,c,o,u,t,,<,<,i,,<,<,e,n,d,l,;,},},r,e,t,u,r,n,,0,;,} | |||||||
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
|