gpt4 book ai didi

关于结构项目的困惑

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

#include <stdio.h>

main(void)
{
struct computer
{
float cost;
int year;
int cpu_speed;
char cpu_type[16];
} model;

printf(“The type of the CPU inside your computer?\n”);
gets(model.cpu_type);
printf(“The speed(MHz) of the CPU?\n”);
scanf(“%d”, &model.cpu_speed);
printf(“The year your computer was made?\n”);
scanf(“%d”, &model.year);
printf(“How much you paid for the computer?\n”);
scanf(“%f”, &model.cost);

printf(“Here are what you entered:\n”);
printf(“Year: %d\n”, model.year);
printf(“Cost: $%6.2f\n”, model.cost);
printf(“CPU type: %s\n”, model.cpu_type);
printf(“CPU speed: %d MHz\n”, model.cpu_speed);

return 0;
}

上面的代码来自《24小时自学C》,但运行时出现杂散错误。

书中还展示了一个输出。

在输出中,模型的成本为 $1234.561234.56 如何适合 %6.2f...我的意思是对于 %6.2f 我们只能得到 234.56 >,对吗?

最佳答案

双引号 中的字符无效,这会导致杂散错误。您可能让他们从其他网站或 pdf 中复制它们。否则你需要检查你的键盘设置。

正确的双引号是"

关于关于结构项目的困惑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43324224/

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