买菜小程序
菜价(单位是元/千克,1斤等于0.5千克):番茄(3.7),芥蓝(7),西芹(1.3),空心菜(8),洋葱(2.4),油菜(9),黄瓜(6.3),白萝卜(0.5)。按顾客需求,计算需要支付的价格,并打印出来。我写的代码是:
#include <stdio.h>
#define FQ(a) 3.7*a/2.0
#define JL(b) 7*b/2.0
#define XQ(c) 1.3*c/2.0
#define KXQ(d) 8*d/2.0
#define YCONG(e) 2.4*e/2.0
#define YC(f) 9*f/2.0
#define HG(g) 6.3*g/2.0
#define BLB(h) 0.5*h/2.0
void main()
{
float a,b,c,d,e,f,g,h;
float TOTAL;
TOTAL=FQ(a)+JL(b)+XQ(c)+KXQ(d)+YCONG(e)+YC(f)+HG(g)+BLB(h);
scanf("%f %f %f %f %f %f %f %f",&a,&b,&c,&d,&e,&f,&g,&h);
printf("需要支付:%.2f元",TOTAL);
}
得不到正确数,找不到原因{:5_100:}
大神还有没有什么好的方法?这要是开个超市,顾客只买一样东西,我岂不是要输入一堆0? 请把Total的计算放到scanf函数后面,还没获得每一样的值,你进行求和是没有意义的
你可以将这些参数都初始化为0,然后用循环来判断时候需要输入,如果你学了循环的话 本帖最后由 fairylee83 于 2017-12-26 16:34 编辑
BngThea 发表于 2017-12-26 16:18
请把Total的计算放到scanf函数后面,还没获得每一样的值,你进行求和是没有意义的
你可以将这些参数都初 ...
#include <stdio.h>
#define FQ(a) 3.7*a/2.0
#define JL(b) 7*b/2.0
#define XQ(c) 1.3*c/2.0
#define KXQ(d) 8*d/2.0
#define YCONG(e) 2.4*e/2.0
#define YC(f) 9*f/2.0
#define HG(g) 6.3*g/2.0
#define BLB(h) 0.5*h/2.0
void main()
{
float a,b,c,d,e,f,g,h;
float TOTAL;
scanf("%f %f %f %f %f %f %f %f",&a,&b,&c,&d,&e,&f,&g,&h);
TOTAL=FQ(a)+JL(b)+XQ(c)+KXQ(d)+YCONG(e)+YC(f)+HG(g)+BLB(h);
printf("需要支付:%.2f元",TOTAL);
}
就第一个问题,修改了以后就成功啦。
循环目前仅限于能看一点点,还不会用。
我再继续修行,以后再解这道题吧。
#include <stdio.h>
#include <string.h>
typedef struct
{
char name;
union
{
double price;
int number;
} u;
} Vegetable;
double CalculatePrice(Vegetable *v)
{
const Vegetable veg[] =
{
{"番茄", 3.7},
{"芥蓝", 7},
{"西芹", 1.3},
{"空心菜", 8},
{"洋葱", 2.4},
{"油菜", 9},
{"黄瓜", 6.3},
{"白萝卜", 0.5}
};
const int vegLength = sizeof(veg) / sizeof(veg);
double price;
for(int i = 0; i < vegLength; i++)
{
if(strcmp(veg.name, v->name) == 0)
{
price = veg.u.price * v->u.number;
break;
}
}
return price;
}
int GetInput(Vegetable *v)
{
scanf("%s", v->name);
if(strncmp(v->name, "#", 1) == 0) // 输入#停止录入
return 1;
scanf("%d", &v->u.number);
return 0;
}
int main(int argc, char *argv[])
{
Vegetable v;
double totalPrice = 0;
//printf("\n"); // 这里还需要提示些什么,但我实在想不出该提示些什么 ^_^
printf("蔬菜名 数量(千克)\n");
while(1)
{
if(GetInput(&v))
break;
totalPrice += CalculatePrice(&v);
}
printf("需要支付:%.2lf元\n", totalPrice);
return 0;
}
人造人 发表于 2017-12-26 17:20
哇!好赞!但以我现在的水平,看不太懂{:5_96:}非常感谢大神辛苦编了这么一段给我开眼让我一饱眼福!{:5_101:}{:5_106:} {:5_96:}大神,我试运行了您的这段程序。报错了。但以我的水平,找不到错在哪。在i++后和括号后分别都加了分号还是运行报错。{:5_92:} 因为他是用c++写的,c++的变量定义和c不同
这里加int i;
const Vegetable veg[] =
{
{"番茄", 3.7},
{"芥蓝", 7},
{"西芹", 1.3},
{"空心菜", 8},
{"洋葱", 2.4},
{"油菜", 9},
{"黄瓜", 6.3},
{"白萝卜", 0.5}
};
const int vegLength = sizeof(veg) / sizeof(veg);
double price;
for( i = 0; i < vegLength; i++)这里改成这样
union
{
double price;
int number; 这里最好用double number;因为有可能0.5千克的情况
} u; fairylee83 发表于 2017-12-27 09:49
大神,我试运行了您的这段程序。报错了。但以我的水平,找不到错在哪。在i++后和括号后分别都加了 ...
#include <stdio.h>
#include <string.h>
typedef struct
{
char name;
union
{
double price;
int number;
} u;
} Vegetable;
double CalculatePrice(Vegetable *v)
{
const Vegetable veg[] =
{
{"番茄", 3.7},
{"芥蓝", 7},
{"西芹", 1.3},
{"空心菜", 8},
{"洋葱", 2.4},
{"油菜", 9},
{"黄瓜", 6.3},
{"白萝卜", 0.5}
};
const int vegLength = sizeof(veg) / sizeof(veg);
double price;
int i;
for(i = 0; i < vegLength; i++)
{
if(strcmp(veg.name, v->name) == 0)
{
price = veg.u.price * v->u.number;
break;
}
}
return price;
}
int GetInput(Vegetable *v)
{
scanf("%s", v->name);
if(strncmp(v->name, "#", 1) == 0) // 输入#停止录入
return 1;
scanf("%d", &v->u.number);
return 0;
}
int main(int argc, char *argv[])
{
Vegetable v;
double totalPrice = 0;
//printf("\n"); // 这里还需要提示些什么,但我实在想不出该提示些什么 ^_^
printf("蔬菜名 数量(千克)\n");
while(1)
{
if(GetInput(&v))
break;
totalPrice += CalculatePrice(&v);
}
printf("需要支付:%.2lf元\n", totalPrice);
return 0;
}
sp1ral 发表于 2017-12-27 10:24
这里加int i;
const Vegetable veg[] =
{
#include <stdio.h>
#include <string.h>
typedef struct
{
char name;
union
{
double price;
double number;
} u;
} Vegetable;
double CalculatePrice(Vegetable *v)
{
int i;
const Vegetable veg[] =
{
{"番茄", 3.7},
{"芥蓝", 7},
{"西芹", 1.3},
{"空心菜", 8},
{"洋葱", 2.4},
{"油菜", 9},
{"黄瓜", 6.3},
{"白萝卜", 0.5}
};
const int vegLength = sizeof(veg) / sizeof(veg);
double price;
for(int i = 0; i < vegLength; i++)
{
if(strcmp(veg.name, v->name) == 0)
{
price = veg.u.price * v->u.number;
break;
}
}
return price;
}
int GetInput(Vegetable *v)
{
scanf("%s", v->name);
if(strncmp(v->name, "#", 1) == 0) // 输入#停止录入
return 1;
scanf("%d", &v->u.number);
return 0;
}
int main(int argc, char *argv[])
{
Vegetable v;
double totalPrice = 0;
//printf("\n"); // 这里还需要提示些什么,但我实在想不出该提示些什么 ^_^
printf("蔬菜名 数量(千克)\n");
while(1)
{
if(GetInput(&v))
break;
totalPrice += CalculatePrice(&v);
}
printf("需要支付:%.2lf元\n", totalPrice);
return 0;
}
按照您说的改了。不知是我没改对,还是什么原因,在不加.c后缀的文件里面运行,应该是C++了吧。还是报错。
我看报错的信息应该是重复定义。所以把int i;又去掉了,然后就能运行了。
谢谢您解答小白的疑惑。
#include <stdio.h>
#include <string.h>
typedef struct
{
char name;
union
{
double price;
double number;
} u;
} Vegetable;
double CalculatePrice(Vegetable *v)
{
const Vegetable veg[] =
{
{"番茄", 3.7},
{"芥蓝", 7},
{"西芹", 1.3},
{"空心菜", 8},
{"洋葱", 2.4},
{"油菜", 9},
{"黄瓜", 6.3},
{"白萝卜", 0.5}
};
const int vegLength = sizeof(veg) / sizeof(veg);
double price;
for(int i = 0; i < vegLength; i++)
{
if(strcmp(veg.name, v->name) == 0)
{
price = veg.u.price * v->u.number;
break;
}
}
return price;
}
int GetInput(Vegetable *v)
{
scanf("%s", v->name);
if(strncmp(v->name, "#", 1) == 0) // 输入#停止录入
return 1;
scanf("%d", &v->u.number);
return 0;
}
int main(int argc, char *argv[])
{
Vegetable v;
double totalPrice = 0;
//printf("\n"); // 这里还需要提示些什么,但我实在想不出该提示些什么 ^_^
printf("蔬菜名 数量(千克)\n");
while(1)
{
if(GetInput(&v))
break;
totalPrice += CalculatePrice(&v);
}
printf("需要支付:%.2lf元\n", totalPrice);
return 0;
}
页:
[1]