iPhone 开发中的十进制

发布于 2024-11-08 15:45:30 字数 519 浏览 0 评论 0原文

我想知道你们是否知道如何在 iPhone 应用程序中使用小数 我有这个作为代码。

int a;
int b;
int c;
a=.32;
b=.18;
c=a/b;
NSString *cstring = [NSString stringWithFormat:@"%d", c];
NSLog(@"%@",cstring);

NSLog 应该给出 1.77777777 重复 但它只给出 1。 我听说过一些关于 NSDecimal 的事情,并尝试在 Apple 的参考资料中查找它,发现 这个

有人知道我做错了什么或者知道其他可行的方法吗?

I was wondering if any of you know how to use decimals in iPhone apps
i have this as a code.

int a;
int b;
int c;
a=.32;
b=.18;
c=a/b;
NSString *cstring = [NSString stringWithFormat:@"%d", c];
NSLog(@"%@",cstring);

The NSLog should give 1.77777777 repeating
but it only gives 1.
I heard something about a NSDecimal and tried looking it up in Apple's Reference thing and found this.

Does anyone either know what I did wrong or know something else that would work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

坦然微笑 2024-11-15 15:45:30

问题是您的 abc 被声明为 int。根据定义,整数是整数。试试这个:

float a = 0.32, b = 0.18, c = a/b; NSLog(@"%f", c);

浮点数是像小数一样的浮点数。

The problem is that your a, b, and c are declared as ints. Integers by definition are whole numbers. Try this:

float a = 0.32, b = 0.18, c = a/b; NSLog(@"%f", c);

Floats are floating-point numbers like decimals.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文