gpt4 book ai didi

C 语言 我的代码中出现错误

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

你好,我正在寻找我哪里做错了?

#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[])
{
int account_on_the_bank=25;
printf("how much money do you have in the banque? \n");
scanf("%f",account_on_the_bank);
printf("Vous avez %d euros sur votre compte",account_on_the_bank);
return 0;
}

我的问题出在哪里???它显示 Windows 已停止工作我已经尝试了一切,总是出现同样的问题?

最佳答案

这是有问题的行:

    scanf("%f",account_on_the_bank);

它有错误的说明符,也没有将变量的地址传递给 scanf。

应该是:

    scanf("%d", &account_on_the_bank);

关于C 语言 我的代码中出现错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33718339/

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