题解 1866: 三位数反转

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1866: 三位数反转

摘要:解题思路:注意事项:参考代码:while True:    try:        a = int(input())        b = a // 100        s = (a - b * 1……

1866: 三位数反转

摘要:解题思路:首先,通过scanf函数获取一个整数作为输入,存储在变量n中。然后,将n除以100,得到百位数字,存储在变量a中。使用取余操作获取十位数字,即n % 100,再除以10,得到十位数字,存储在……

1866: 三位数反转(Python)

摘要:解题思路:注意事项:参考代码:while True:     try:         n = input()         m = n[::-1]         

三位数反转 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;int main(){   int a,b,c,n;  ……

1866:三位数反转(C++)

摘要:解题思路:百位数为i/100;十位数为1/10-i/100*10;个位数为i-i/100*100-(i/10-i/100*10)*10注意事项:此题目含“有多组测试数据”则需要用循环结构参考代码:#i……

用字符串进行反转

摘要:```java import java.util.*; public class Main { public static void main(String[] args) { ……