2025/8/1刷题记录 摘要:解题思路:和取反一样就是加了个判断第一个个位数是不是0通过定义一个i来判断是不是第一个 判断正负 正就正常取反 复就先算出绝对值然后输出一个-然后再取反注意事项:参考代码:#…… 题解列表 2025年08月01日 2 点赞 0 评论 244 浏览 评分:0.0
数字反转zhaunzhaun 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,ans=0; cin>>n; …… 题解列表 2023年07月12日 0 点赞 0 评论 377 浏览 评分:0.0
数字反转(简单思路) 摘要:解题思路:用long long输入即可,用数组判断前导0注意事项:注意输入会有负数,则输出需要“-”注意下面的for循环a[-1]=0的用法参考代码:#include<bits/stdc++.h>us…… 题解列表 2023年03月23日 0 点赞 0 评论 451 浏览 评分:0.0
很新手的解题,想到什么就写什么,你绝对能看懂 摘要:解题思路:把输入的数的各个位数依次取出来存在数组里,再取出来组成反转的数注意事项:参考代码:#include<stdio.h>#include<math.h>int…… 题解列表 2025年01月23日 0 点赞 0 评论 437 浏览 评分:0.0
题解 2819: 数字反转 摘要:解题思路:注意事项:注意第7行要写一个合并数位的小算法;第8行要写一个分解数列的算法参考代码:#include<bits/stdc++.h>using namespace std;int …… 题解列表 2025年01月12日 1 点赞 0 评论 348 浏览 评分:0.0
感谢支持,谢谢 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long n,m,i; cin>>n; …… 题解列表 2023年07月12日 0 点赞 0 评论 388 浏览 评分:0.0
题解 2819: 数字反转 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ long long n,sum=…… 题解列表 2025年01月12日 0 点赞 0 评论 360 浏览 评分:0.0
2819: 数字反转 摘要:``` #include using namespace std; int main(){ int a,ans=0; cin>>a; while(a){ ans=ans*10+…… 题解列表 2023年11月21日 0 点赞 0 评论 274 浏览 评分:2.0
2819: 数字反转 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int n,h = 0; cin>>n; whil…… 题解列表 2024年01月16日 0 点赞 1 评论 229 浏览 评分:2.0
编写题解 2819: 数字反转 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){ int n,m=0; cin>>n; while(n){ m=m*10+n%10;//每…… 题解列表 2022年11月24日 0 点赞 3 评论 430 浏览 评分:2.0