文章

105

粉丝

69

获赞

117

访问

56.9k

头像
反序相等 (C++)题解:
P1461 北京理工大学机试题
发布于2024年6月5日 18:56
阅读数 479

#include<bits/stdc++.h>
using namespace std;

bool cheak(int x)
{
	string num = to_string(x);
	
	reverse(num.begin(), num.end());
	
	if(x * 9 == stoi(num)) return true;
	
	return false;
}

int main()
{
	for(int i = 1000; i <= 9999; i ++) 
		if(cheak(i)) cout << i << endl;
	
	return 0;
} 

 

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发