gpt4 book ai didi

c - 如何在 C printf() 函数中显示变量?

转载 作者:太空宇宙 更新时间:2023-11-04 05:59:41 25 4
gpt4 key购买 nike

我尝试在以下 printf() 函数中打印两个整数值:

printf("%s", "The quotient is %d with remainder %d", quo, rem);

我的书说这应该打印

The quotient is 5 with remainder 1

(quo 为 11,rem 为 1),而是打印

The quotient is %d with remainder %d

我正在使用 gcc 编译和运行 Ubuntu 12.04 LTS(64 位)。我看错了吗?是编译器问题吗?

最佳答案

您误解了 printf 的工作原理。只有第一个参数被解析为格式字符串,因此 %s 被直接替换为给定的字符串,包括 %d

正确的形式是 printf("The quotient is %d with remainder %d\n", quo, rem);

关于c - 如何在 C printf() 函数中显示变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21225055/

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