ddd看这里,三位数反转,一眼就懂,不懂包教会 摘要:解题思路:分离百位,十位,个位数字注意事项:输出一定得加“\n”,要不然第二轮测试点过不了参考代码:#includeint main(){ // int a,b; // while(~sc…… 题解列表 2023年10月17日 1 点赞 4 评论 476 浏览 评分:7.3
1866: 三位数反转 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<bits/stdc++.h> using namespace std; int main() { …… 题解列表 2023年10月09日 0 点赞 0 评论 82 浏览 评分:0.0
三位数反转(两种思路) 摘要:参考代码: 第一种,这种思路最后位可能会出现0,比如210,执行后会变成012 ```c #include int main() { int a; while(~scanf("%…… 题解列表 2023年10月01日 0 点赞 0 评论 599 浏览 评分:10.0
三位数反转 摘要:解题思路:注意事项:参考代码: #includeint main(){ int a; while(scanf("%d\n",&a)!=EOF){ int o,p,q; o=a/…… 题解列表 2023年09月21日 0 点赞 0 评论 93 浏览 评分:0.0
题解 1866: 三位数反转(C代码) 摘要:解题思路:注意审题,输出3个整数(看着是n的倒叙数,但是并不是,而是3个整数挨着)注意事项:加题干中的判断条件,注意只要输入有效就可以一直输出,而不是只能输入一次用while (~scanf("%d"…… 题解列表 2023年08月16日 0 点赞 0 评论 192 浏览 评分:0.0
1866: 三位数反转(Python) 摘要:解题思路:注意事项:参考代码:while True: try: n = input() m = n[::-1]   题解列表 2023年02月10日 0 点赞 2 评论 451 浏览 评分:7.3
1866: 三位数反转 摘要:这道题我居然错了四次,我真是要吐了,如果也有像我一样的小伙伴,那就把代码贴过去吧。 ```cpp #include using namespace std; int main() { …… 题解列表 2023年01月12日 0 点赞 0 评论 266 浏览 评分:9.9
1866: 三位数反转 摘要:解题思路:注意事项:参考代码:while True: try: a = int(input()) b = a // 100 s = (a - b * 1…… 题解列表 2022年11月24日 0 点赞 5 评论 324 浏览 评分:6.0
三位数反转 摘要:#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…… 题解列表 2022年11月08日 0 点赞 0 评论 239 浏览 评分:9.9
1866-三位数反转(简洁) 摘要:```cpp /* 注意点: 1.多组数据输入,使用while(cin >>n){} 2.不需要考虑输入数字个位为0的情形 */ #include using namespace st…… 题解列表 2022年10月15日 0 点赞 0 评论 194 浏览 评分:0.0