gpt4 book ai didi

c - double 型、整数、长 double 型

转载 作者:行者123 更新时间:2023-11-30 20:31:27 26 4
gpt4 key购买 nike

如果这段代码中有一个愚蠢的错误,我提前道歉,但我似乎无法解决它。我的问题是这样的,我用GCC-8(通过home-brew安装在Mac上)编译,然后在终端中执行。当使用 int do 定义变量 s & a 时,我使用下面的 print 语句得到零作为输出。如果我将 s & a 变量声明为 double,前两个 print 语句仍会得到 0,最后一个 print 语句仍会得到 1024。我只是不知道发生了什么。感谢任何帮助!

/* square code */
#include <stdio.h>

int main() {
int s, a;
printf("enter the length of your square \n");
scanf("%f", &s);
a= s * s;
printf("the area of your square is %f cm using f placeholder \n", a);
printf("the area of your square is %lf cm uning fl placeholder\n", a);
printf("the area of your square is %d cm using d placeholder \n", a);
return(0);
}

最佳答案

int s;
scanf("%f", &s);

如果 sint 那么您需要使用 "%d"int 一样扫描它> 而不是“%f”。在 scanf()printf() 中,您所做的都是未定义的行为。需要扫描一个整数并作为整数打印。

关于c - double 型、整数、长 double 型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50890436/

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