gpt4 book ai didi

C 程序计算字符串中的用户输入并将总成本打印为 int

转载 作者:行者123 更新时间:2023-11-30 14:45:07 25 4
gpt4 key购买 nike

任何人都可以帮助我理解这个问题并帮助回答,我一整天都在试图弄清楚。

马克·丹尼尔斯是一位木匠,擅长制作个性化的房屋标志。他希望有一个应用程序能够根据以下因素计算客户订购的任何标牌的价格: * 所有标牌的最低收费为 30 美元。 * 如果标牌是橡木制成的,则需加收 15 美元。松木不另外收费。 * 前六个字母或数字包含在最低费用内;每增加一个角色需支付 3 美元的费用。 * 黑白字符包含在最低费用内;金箔刻字需额外支付 12 美元费用。 询问用户以下信息: 1)他们的星座是橡树(O)还是松树(P) 2)他们的标志有多少个字母或字符 3) 他们想要什么类型的刻字 Gold (G) 或 Normal (N) 然后打印出他们的标志的成本

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

int main()
{
const int MIN_CHARGE = 30;
const int OAK_CHARGE = 15;
const int PINE_CHARGE = 0;
char woodType;
int lettercount;
const int ADDITION_CHAR;
char textType;
const int GOLD_LEAF = 12;
int totalCost;



printf("Type 'O' for Oak and 'P' for Pine: ");
scanf_s("%c",&woodType, 1);
if (woodType = 'O')
{
totalCost = MIN_CHARGE + OAK_CHARGE;
printf("The total cost of oak is: %d", &wood);
}
else
{
totalCost = MIN_CHARGE;
printf("The total cost of pine is: %d\n", totalCost);
}

printf("How many letters or numbers are in your sign? ");
scanf_s("%d", &lettercount);

if (lettercount > 6)
{
totalCost = totalCost + ADDITION_CHAR * (lettercount - 6);
printf("The total cost of letters is: %d", totalCost);
}

else
{
printf("Type 'G' for Gold and 'N' for normal letters \n");
scanf_s("%c", &textType, 1);

}
if (textType == 'G' || textType == 'g')
{
totalCost = totalCost + GOLD_LEAF;
printf("The total cost of gold leaf letters is: %d\n", totalCost);
}


printf("The total cost of sign is: %d\n", totalCost);

return 0;
}`

最佳答案

理查德.我希望你做得很好!

  1. 问题没有说在输入值后告知总成本。如果我是你,我就不会这么做。只要让事情变得简单,只做问题想要的事情。

    printf("橡木的总成本为:%d", &wood); 在这一行中,您忘记声明变量 'wood'

  2. 在这里,您的代码完全错误。

    if(字母数 > 6)
    {
    总成本 = 总成本 + ADDITION_CHAR * (字母数 - 6);
    printf("字母的总成本为:%d",totalCost);
    } 别的 {
    printf("输入 'G' 表示黄金字母,输入 'N' 表示普通字母\n");
    scanf_s("%c", &textType, 1);
    }

    你在这里做错的事情与“其他”有关。在这里,如果他需要超过 6 个字母,程序将不会让用户说出他想要金色字母还是普通字母。

  3. 最后,您必须在“%c”之前添加一个空格。这可能看起来很奇怪,但要知道为什么必须在 '%c' 之前使用空格,您需要了解什么是缓冲区。您可以了解更多关于他们的信息here .

    printf("输入 'G' 表示金色字母,输入 'N' 表示普通字母\n");
    scanf_s("%c", &textType, 1);

总的来说,您的代码需要更多关注。尝试使用较少的变量之类的事情可以帮助你很多,特别是在微 Controller 中(我不知道这是否是你的目标)。另外,您可以查看我自己的分辨率:

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

int main(){
const int OAK_CHARGE = 15;
const int GOLD_LEAF = 12;
const int ADDITION_CHAR = 3;
char woodType, textType;
int lettercount = 0;
int totalCost = 30;

printf("Type 'O' for Oak or 'P' for Pine: ");
scanf_s(" %c",&woodType, 1);
if (woodType == 'O' || woodType == 'o'){
totalCost += OAK_CHARGE;
}

printf("How many letters or numbers are in your sign? ");
scanf_s("%d", &lettercount);
if (lettercount > 6){
totalCost += ADDITION_CHAR*(lettercount - 6);
}

printf("Type 'G' for Gold and 'N' for normal letters: ");
scanf_s(" %c",&textType, 1);
if (textType == 'G' || textType == 'g'){
totalCost += GOLD_LEAF;
}

printf("The total cost of sign is: %d", totalCost);
return 0;
}

请注意,可能存在更好的解决方案。每个人都有自己的编码风格。好吧,我希望我有用!

关于C 程序计算字符串中的用户输入并将总成本打印为 int,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53244403/

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