#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字 | 1.5分钟 | 100% | 124 CPM | 16 次 | 0 | 及格,继续努力! |
Inspirational quotes: 什么都有用完的一天,太阳会用完,空气会用完,燃料会用完,精力会用完,耐性会用完,斗志会用完,爱情又凭什么不会用完。 ——张小娴 | |||||||
What do you think of this article? Give it a rating and let it serve as a guiding light for others
|