gpt4 book ai didi

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

转载 作者:搜寻专家 更新时间:2023-10-30 19:50:24 26 4
gpt4 key购买 nike

在 objective-c 中,我如何连接两个数字(如 7 和 6)以得到数字 76,或 3 和 3 以便结果为 33?

最佳答案

没有用于连接数字的内置符号。但是,您可以通过执行以下操作来完成此操作:

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 中连接两个数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1993965/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com