Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道 8.1 字符串中百分比的用途。感谢您的帮助。
%8.1f是一个format specifier。这应该为您指明正确的方向,以了解所有部分的含义。它指定打印变量的格式。在这种特定情况下,它是浮点变量的占位符。它保留至少 8 个字符的宽度和 1 的精度。
%8.1f
format specifier
有关更多信息,请对format specifiers. 对于几乎所有编程语言来说,它都是一个非常有据可查且广泛可用的主题。
format specifiers