gpt4 book ai didi

C.exe "stopped working"错误

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

<分区>

这个 C 程序编译得很好,但是当我运行它时,在它要求第一个输入后,我收到一个 Windows 错误,提示“hw.exe 已停止工作”。

#include <stdio.h> 
#include <math.h>

int main(void)
{

int valA, valB, valC;
double result;


printf("Enter the first side of the triangle.");
scanf("%d", valA);

printf("Enter the second side of the triangle.");
scanf("%d", valB);

valC = (valA * valA) + (valB * valB);

result = sqrt(valC);

printf("The square root of %d is: %f\n", valC, result);

return 0;
}

我是 C 的新手,所以我确定我错过了一些非常简单的东西。任何帮助表示赞赏。谢谢!

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