gpt4 book ai didi

c - 你如何在C中显示 "%5d"?

转载 作者:太空狗 更新时间:2023-10-29 15:45:29 26 4
gpt4 key购买 nike

如何在 C 中显示字符串“%5d”?我试着在百分比前面加一个反斜杠,但它不会打印(并发出警告)。我试过谷歌搜索但无济于事。我想这太宽泛了,我找不到具体的答案。

#include <stdio.h>

int main(void)
{
int test = 40;
printf("\%5.1d %5.1d", test); //this is the one
printf("%5.1d", test);
return 0;
}

有什么帮助吗?

最佳答案

要打印 % 试试 printf("%%");

这行得通

printf("%%5.1d %5.1d", test);

关于c - 你如何在C中显示 "%5d"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4772598/

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