主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
我与代码的故事
2024年6月5日 18:56
反序相等 (C++)题解:
P1461
回复 0
|
赞 2
|
浏览 478
#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...
Amberqwe
2024年3月25日 22:03
反序相等 题解:
P1461
回复 2
|
赞 0
|
浏览 454
为啥在其他测试通过,这个不通过 #include <stdio.h> #include <string.h> int main() { for (int i = 1000; i < 1200; i++) { int f = i * 9; char a[4], b[4]; sprintf(a, "...
fzh
2024年3月20日 17:28
反序相等 题解:就几行
P1461
回复 0
|
赞 0
|
浏览 396
#include<bits/stdc++.h> using namespace std; int main() { int t; for (int i = 1000; i <= 1111; i++) { if (i % 10 != 9)continue; t = i * 9; &nb...
小酒
2024年3月11日 15:55
反序相等 题解:
P1461
回复 0
|
赞 0
|
浏览 492
1461解题思路 #include <bits/stdc++.h> using namespace std; int main() { int y,a=1000; int sum=0; while(a<=9999) { int x=a; sum...
Mr Bian
2021年3月8日 19:46
4行代码解决问题
P1461
回复 2
|
赞 0
|
浏览 6.8k
#include "stdio.h" int main(){ printf("1089\n"); return 0; }
活着的传奇
2023年8月22日 16:17
反序相等 题解:
P1461
回复 0
|
赞 0
|
浏览 639
#include<bits/stdc++.h> using namespace std; int fanxushu(int i){ int b;int s=0; while(i>0){ b=i%10; s=s*10+b; i=i/10; } return s; } int main(){ int i; for(i=1000;i<=1111;i++){ if(i*9==fanxushu(i)) printf("%d\n",i); } return 0; } &n...
Hegel
2023年3月28日 19:47
求四位数,它的9倍正好是它的反序数
P1461
回复 0
|
赞 0
|
浏览 1.9k
#include <iostream> using namespace std; int main(){ for(int i=1000;i<=9999;i++){ int temp=i,re=0; while(temp>0){ re=re*10+temp%10; temp/=10; } if(9*i==re) cout<<i<<endl; } return 0; }
My_opt
2022年4月30日 16:12
c++
P1461
回复 0
|
赞 0
|
浏览 4.1k
#include <iostream> using namespace std; int rev(int x) { int y = 0; for (; x; x /= 10) y = y * 10 + x % 10; return y; } int main() { for (int i = 1000; i < 1200; i ++ ) if (i * 9 == rev(i)) cout << i << endl; return 0; }
A1120161820
2020年3月9日 10:16
反序相等(c++)
P1461
回复 0
|
赞 0
|
浏览 8.6k
#include<iostream> using namespace std; int main() { for (int num = 1000; num <= 9999; num++) { int a = num/1000; int b = (num%100)/100; int c = (num%100)/10; int d = num%10; int tmp = d*1000 + c*100 + b*10 + a; if (num*9 == tmp) cout << num << en...
莫小七
2020年2月22日 01:20
1461 反序相等(非暴力法)
P1461
回复 0
|
赞 1
|
浏览 8.6k
#include using namespace std; int main() { int a, b, c, d;//(”abcd“分别代表“千百十个”) for (b = 0;b < 2;++b) { for (c = 0;c < 10;++c) { if ((1000 + b * 100 + c * 10 + 9) * 9 == (9000 + c * 100 + b * 10 + 1)) { cout << (1000 + b * 100 +...
题目
反序相等
题解数量
10
发布题解
热门题解
1
反序相等 (C++)题解:
2
1461 反序相等(非暴力法)
3
反序相等 题解:
4
c++
5
求四位数,它的9倍正好是它的反序数
6
4行代码解决问题
7
反序相等(c++)
8
反序相等 题解:
9
反序相等 题解:
10
反序相等 题解:就几行