我有一个我正在开发的应用程序,我的一个功能是在需要时给出float或double值的答案,当答案是整数时给出一个整数
所以例如如果答案是8.52,则答案变为8.52,但当答案为8时答案是8而不是8.0000,我不希望它显示所有额外的0.
- (IBAction) equalsbutton { NSString *val = display.text; switch(operation) { case Plus : display.text= [NSString stringWithFormat:@"%qi",[val longLongValue]+[storage longLongValue]]; case Plus2 : display.text= [NSString stringWithFormat:@"%f",[val doubleValue]+[storage doubleValue]];
这段代码似乎不起作用
解决方法
这些说明符是
standard IEEE format specifiers,这意味着您可以执行%.2f之类的操作,只在float变量上显示2个小数位.
您也可以将其转换为int,然后使用%d格式说明符,如果您想这样做的话.
关于这个问题,这里也是Apple’s documentation.
编辑:根据你对另一篇文章的评论,看起来你正在寻找%g,这将基本上从浮动中删除无关的0.
display.text= [NSString stringWithFormat:@"%g",[val doubleValue]+[storage doubleValue]];
我在这里找到了答案:Use printf to format floats without decimal places if only trailing 0s