三位数反转-题解(C++代码) 摘要:不会的小伙伴来看看哦,答案错50%的也来看看。 首先注意看题目,输入一个三位数,分离出它的百位、十位和个位,反转后输出。(有多组输入数据),这个很重要,可以用while 循环输入,while(cin…… 题解列表 2020年01月31日 0 点赞 3 评论 626 浏览 评分:5.1
三位数反转-题解(Python代码) 摘要:这道题可以通过取巧的方式来解答 直接当做字符串来反转即可 也不用考虑100反转后要输出001的问题 代码如下: ```python n = str(input()) while 1: …… 题解列表 2020年03月21日 0 点赞 0 评论 713 浏览 评分:4.4
三位数反转-题解(C++代码) 摘要:# 细节 多组输入数据。 分离出来的个位、十位、百位数字,直接输出。 不要计算逆序后的值再输出,会丢失低位的 0 。比如 500。 # 代码 ```cpp #include int…… 题解列表 2020年01月04日 0 点赞 0 评论 418 浏览 评分:2.0
三位数反转 (C语言代码) 摘要:解题思路:注意事项:输出数必须分离,否则错。参考代码:#include<stdio.h>int main(){ int x,i,a,b,c; while((i = scanf("%d",&x))!= …… 题解列表 2019年02月13日 0 点赞 0 评论 844 浏览 评分:2.0
1866: 三位数反转 摘要:直接用 reverse 函数反转。#include <bits/stdc++.h> using namespace std; int main(){ string s; w…… 题解列表 2022年01月11日 0 点赞 0 评论 104 浏览 评分:0.0
三位数反转顶位有无零方法 摘要:解题思路:将一个的百位、十位、个位分别求出,并判断十位与个位是否为零并将其逆序输出。注意事项:顶位可能为零。这道题并不要求顶位不能为零!参考代码:一、顶位不出现零:1.装逼式方法#include<st…… 题解列表 2024年11月03日 0 点赞 0 评论 106 浏览 评分:0.0
三位数反转 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;int main(){ int a,b,c,n; …… 题解列表 2018年09月25日 5 点赞 0 评论 1286 浏览 评分:0.0
三位数反转-题解(C语言代码) 摘要: #include "stdio.h" int main() { int a; int b,s,g; while(~scanf("%d",&a)) { b=a/…… 题解列表 2020年02月14日 0 点赞 0 评论 435 浏览 评分:0.0
三位数反转 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,k,n; while(scanf("%d",&n)!=EOF) { w…… 题解列表 2019年01月08日 0 点赞 0 评论 525 浏览 评分:0.0
1866: 三位数反转 摘要:解题思路:这题有多行输入,可能会造成错误注意事项:参考代码:while True: try: a = list(input()) b = a[::-1] …… 题解列表 2024年12月21日 0 点赞 0 评论 114 浏览 评分:0.0