三位数反转 (C语言代码) 摘要:解题思路: 循环分离各位数。参考代码:#include<stdio.h> int main() { int i, n, a[3] = {0}; while…… 题解列表 2018年08月11日 0 点赞 0 评论 1095 浏览 评分:0.0
编写题解 1866: 三位数反转 摘要:解题思路:注意事项:参考代码:import java.util.*;public class Main { public static void main(String[] args) { …… 题解列表 2021年11月26日 0 点赞 0 评论 288 浏览 评分: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 评论 409 浏览 评分:0.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: 三位数反转 摘要:直接用 reverse 函数反转。#include <bits/stdc++.h> using namespace std; int main(){ string s; w…… 题解列表 2022年01月11日 0 点赞 0 评论 99 浏览 评分:0.0
三位数反转 (C语言代码) 摘要:解题思路: 输入三位数,分离出它的百位、十位和个位,反转后输出注意事项: 1.有多组输入数据 &nbs 题解列表 2018年09月28日 0 点赞 0 评论 680 浏览 评分:0.0
三位数反转顶位有无零方法 摘要:解题思路:将一个的百位、十位、个位分别求出,并判断十位与个位是否为零并将其逆序输出。注意事项:顶位可能为零。这道题并不要求顶位不能为零!参考代码:一、顶位不出现零:1.装逼式方法#include<st…… 题解列表 2024年11月03日 0 点赞 0 评论 94 浏览 评分:0.0
三位数反转 摘要:解题思路:注意事项:参考代码:while True: try: num = int(input()) a = num % 10 b=num//10%10…… 题解列表 2024年03月12日 0 点赞 0 评论 129 浏览 评分:0.0
1866: 三位数反转 摘要:解题思路:这题有多行输入,可能会造成错误注意事项:参考代码:while True: try: a = list(input()) b = a[::-1] …… 题解列表 2024年12月21日 0 点赞 0 评论 78 浏览 评分:0.0
三位数反转-题解(C语言代码)优质C语言题解。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n; while(scanf("%d",&n)!=EOF)//这个就是多…… 题解列表 2020年08月17日 0 点赞 0 评论 330 浏览 评分:0.0