题解 1866: 三位数反转

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

筛选

1866: 三位数反转

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

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

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

三位数反转-题解(C++代码)

摘要:# 题解 **以后每周五都会更新一个小程序源代码,敬请期待!** **这个是一个可以翻转所有数字的程序** ```cpp #include using namespace std; in……

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

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

三位数反转-题解(C++代码)

摘要:不会的小伙伴来看看哦,答案错50%的也来看看。 首先注意看题目,输入一个三位数,分离出它的百位、十位和个位,反转后输出。(有多组输入数据),这个很重要,可以用while 循环输入,while(cin……

三位数反转-题解(C++代码)

摘要:# 细节 多组输入数据。 分离出来的个位、十位、百位数字,直接输出。 不要计算逆序后的值再输出,会丢失低位的 0 。比如 500。 # 代码 ```cpp #include int……

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

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

1866-三位数反转(简洁)

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