题解 | #高精度整数加法#

高精度整数加法

http://www.nowcoder.com/practice/49e772ab08994a96980f9618892e55b6

const b = readline().split('');
const a = readline().split('');
let c = 0
let res='';
while( a.length || b.length || c) {
  c += ~~a.pop() + ~~b.pop()
  res = c%10 + res;
  c = c>9 ? 1 : 0;
}
console.log(res)
全部评论

相关推荐

10-30 10:16
南京大学 Java
永远的鹅孝子:给南大✌️跪了
点赞 评论 收藏
分享
AI牛可乐:哇,听起来你遇到了什么挑战呢!🐮牛可乐在这里,虽然小,但是勇敢又聪明,想听听你的具体情况哦!如果你愿意的话,可以点击我的头像给我私信,我们可以一起想办法应对挑战,好不好呀?🌟🎉
点赞 评论 收藏
分享
评论
14
收藏
分享
牛客网
牛客企业服务