如何在Objective-C中连接两个数字

如何在Objective-C中连接两个数字,第1张

概述如何连接两个数字,如7和6,得到数字76,或3和3,所以结果是33,在 objective-c? 没有内置符号来连接数字.但是,您可以通过以下方式完成此 *** 作: int first; /* Assuming this is initialized to the first number */int second; /* Assuming this is initalized to the seco 如何连接两个数字,如7和6,得到数字76,或3和3,所以结果是33,在 objective-c?解决方法 没有内置符号来连接数字.但是,您可以通过以下方式完成此 *** 作:

int first; /* Assuming this is initialized to the first number */int second; /* Assuming this is initalized to the second number */int myVal = [[Nsstring stringWithFormat:@"%d%d",first,second] intValue];
总结

以上是内存溢出为你收集整理的如何在Objective-C中连接两个数字全部内容,希望文章能够帮你解决如何在Objective-C中连接两个数字所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1003406.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-22
下一篇 2022-05-22

发表评论

登录后才能评论

评论列表(0条)

保存