LeetCode | 7. 整数反转
我的Bilibili频道:香芋派Taro
我的个人博客:taropie0224.github.io(阅读体验更佳)
我的公众号:香芋派的烘焙坊
我的音频技术交流群:1136403177
我的个人微信:JazzyTaroPie
https://leetcode.cn/problems/reverse-integer/
题解and思路
1 | class Solution { |
补充
string转long long
1 | long long x = strtoll(s.c_str(), nullptr, 10); |
string转int
1 | int x = atoi(s.c_str()); |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 香芋派Taro!