三位数反转-题解(Java代码) 摘要: //总是错误50% 原因在这。题目中写道有:多组输入数据 Scanner sc=new Scanner(System.in); while(sc.hasNext()){ int …… 题解列表 2020年04月04日 0 点赞 0 评论 1062 浏览 评分:9.9
1866: 三位数反转 摘要:解题思路:注意事项:参考代码:while True: try: n = input() print(n[::-1]) except: &nb 题解列表 2021年12月31日 0 点赞 1 评论 405 浏览 评分:9.9
。。简短。。:三位数反转 (C语言代码)只有3行。。可AC 摘要:反转时如果是100之类的,要转成001。#include<stdio.h> int main() { int n; while(scanf("%d",&n)!=EOF) print…… 题解列表 2019年02月23日 1 点赞 5 评论 2148 浏览 评分:9.5
三位数反转-题解(Python代码) 三行、两行、一行的写法 摘要:#三行代码 这道题对于Python来说还是很友好的,由用户输入一个数字,然后通过切片的方式进行反转,直接输出就好了。 ```python while True: num = inp…… 题解列表 2020年03月22日 1 点赞 2 评论 893 浏览 评分:8.4
ddd看这里,三位数反转,一眼就懂,不懂包教会 摘要:解题思路:分离百位,十位,个位数字注意事项:输出一定得加“\n”,要不然第二轮测试点过不了参考代码:#includeint main(){ // int a,b; // while(~sc…… 题解列表 2023年10月17日 1 点赞 4 评论 476 浏览 评分:7.3
1866: 三位数反转(Python) 摘要:解题思路:注意事项:参考代码:while True: try: n = input() m = n[::-1]   题解列表 2023年02月10日 0 点赞 2 评论 451 浏览 评分:7.3
三位数反转 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;int main(){ int a,b,c,n; …… 题解列表 2018年09月25日 5 点赞 0 评论 1449 浏览 评分:7.3
1866: 三位数反转 摘要:解题思路:首先,通过scanf函数获取一个整数作为输入,存储在变量n中。然后,将n除以100,得到百位数字,存储在变量a中。使用取余操作获取十位数字,即n % 100,再除以10,得到十位数字,存储在…… 题解列表 2024年02月29日 0 点赞 0 评论 346 浏览 评分:7.0
三位数反转 (C语言代码) 摘要:解题思路:用字符串保存直接反输出注意事项:直接输出printf("%c%c%c",s[2],s[1],s[0]);是错误的 因为输入两位数的时候,s[2]是'\0'了参考代码:#in…… 题解列表 2018年07月26日 1 点赞 0 评论 1338 浏览 评分:6.0
1866: 三位数反转 摘要:解题思路:注意事项:参考代码:while True: try: a = int(input()) b = a // 100 s = (a - b * 1…… 题解列表 2022年11月24日 0 点赞 5 评论 324 浏览 评分:6.0