题解 1866: 三位数反转

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

筛选

1866: 三位数反转

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<bits/stdc++.h> using namespace std; int main() {    ……

三位数反转(两种思路)

摘要:参考代码: 第一种,这种思路最后位可能会出现0,比如210,执行后会变成012 ```c #include int main() { int a; while(~scanf("%……

三位数反转

摘要:解题思路:注意事项:参考代码: #includeint main(){    int a;    while(scanf("%d\n",&a)!=EOF){    int o,p,q;    o=a/……

题解 1866: 三位数反转(C代码)

摘要:解题思路:注意审题,输出3个整数(看着是n的倒叙数,但是并不是,而是3个整数挨着)注意事项:加题干中的判断条件,注意只要输入有效就可以一直输出,而不是只能输入一次用while (~scanf("%d"……

1866: 三位数反转(Python)

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

1866: 三位数反转

摘要:这道题我居然错了四次,我真是要吐了,如果也有像我一样的小伙伴,那就把代码贴过去吧。 ```cpp #include using namespace std; int main() { ……

1866: 三位数反转

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

三位数反转

摘要:#include<stdio.h>int main(){int n,a,b,c,t;while(scanf("%d",&n)==1){a=n/100;b=n%100/10;c=n%10;t=c*100……

1866-三位数反转(简洁)

摘要:```cpp /* 注意点: 1.多组数据输入,使用while(cin >>n){} 2.不需要考虑输入数字个位为0的情形 */ #include using namespace st……