你们说得对,我问这这个并不是我偷懒呀什么的,这个问题我已经解决了,其实很简单的,因为我没有学到后面很多的语法,今天才学到if语句,所以,这题用到if语句就好做了,我的代码如下:
#include <stdio.h>
int main(void)
{
long number = 0L;
long quantity = 0L;
const double price_b = 3.5;
const double price_h = 5.5;
double price_1 = 0.0;
double price_2 = 0.0;
printf("选择你的版本: \n1.标准版\n2.豪华版\n你的选择:");
scanf("%ld",&number);
printf("请输入数量:");
scanf("%ld", &quantity);
price_1 = price_b*quantity;
price_2 = price_h*quantity;
if(number == 1)
printf("价格一共是:%.2f", price_1);
if(number == 2)
printf("价格一共是:%.2f", price_2);
return 0;
}
虽然这代码写得不怎么好,不过是自己写出来的也挺开心的,以后不会再问怎么写代码之类的问题了