gpt4 book ai didi

c++ - 如何在 C++ 中使用 printf

转载 作者:行者123 更新时间:2023-11-30 21:47:37 25 4
gpt4 key购买 nike

我有 2 个命令

printf("%2i%2i", 3, 5);

printf("%7.2f %2i\n", 34.56, 1);

看看%2i如何第一个 printf 向右移动“5”2 个单位命令

但是对于

printf("%7.2f %2i\n", 34.56, 1);  

“1”是数字34.56后移了3个空格?

最佳答案

the "1" is 3 moved spaces after the number 34.56 ?

原因是第二个格式化字符串中有多余的空格:

printf("%2i%2i", 3, 5);
printf("%7.2f %2i\n", 34.56, 1);
// ^here

关于c++ - 如何在 C++ 中使用 printf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25675759/

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