gpt4 book ai didi

c++ - 使用 fprintf 打印两个字符串之间的空格

转载 作者:太空宇宙 更新时间:2023-11-04 11:38:19 27 4
gpt4 key购买 nike

我想使用 fprintf 在同一行上打印出两个字符串,它们之间有空格。该行最多必须有 80 个字符,因此我希望两个字符串之间的空格数为 80 减去两个字符串的长度。这是我目前所拥有的:

fprintf(pFile, "%s Statistics%80s\n", name.project, currentDateTime());

我的输出是这样的:

AnotherProject Statistics                                                             2014-03-13.11:50:10

太长了。 currentDateTime() 的字符串长度将始终返回 20。是否可以在这种情况下使用 fprintf

最佳答案

计算所需的字段宽度,然后使用%*s:

const int fw = 80 - strlen(name.project) - strlen(" Statistics") - strlen(currentDateTime());
fprintf(pFile, "%s Statistics%*s\n", name.project, fw, currentDateTime());

关于c++ - 使用 fprintf 打印两个字符串之间的空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22385896/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com