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.
我想知道在 C 语言的printf和scanf函数中格式化是什么意思。我是 C 编程新手,不明白格式化是什么意思。谁能给我适当的解释?
printf
scanf
printf("%s %d", "abc", 123);
%s %d是格式字符串,包含如何处理参数的说明。在这种情况下,它说打印字符串,打印一个空格,然后打印一个整数。
%s %d
与格式化输出一样,因此您可以“打印”一个名为 myMoney 的 11003.145 的双精度为 11,003.15 美元。