在我的计算器应用程序中,我试图在 UILabel 中显示“双”值。但是,该值的零总是比它需要的多。例如,64 显示为 64.000000,4.23 显示为 4.230000 等。
我怎样才能让它只显示尽可能多的小数位?
vector<Token> postfix; // create empty postfix vector
infixToPostfix(infix, postfix); // call inToPost to fill up postfix vector from infix vector
answer = postFixEvaluate(postfix); // evaluate expression
expString.clear();
expNSString = [NSString stringWithFormat:@"%f", answer]; // convert "answer" to NSString
displayScreen.text = expNSString; // display answer in UIlabel "displayScreen"