请帮忙看看下面C程序

来源:-

hyq7610

2016-03-18 09:33

下面c程序 double total = 0.0; 这一句为何放在第四行可以,而在放在第八行就不行,

#include <stdio.h>

int main(void)
{
    const double unit_price = 3.50;
   // double total = 0.0; //放在这里就可以
    int quantity = 0;
    printf("Enter the number that you want to buy:");
    scanf("%d", &quantity);
   double total = 0.0; //为何放在这里不行
    if(quantity > 10)
        total = quantity*unit_price*0.95;
    else
        total = quantity*unit_price;
    printf("The price for %d is $%.2f\n", quantity, total);
    return 0;



写回答 关注

1回答

  • Honcor
    2016-03-18 20:55:26

    56ebfaa80001cc3404960332.jpg

    56ebfaa80001ebfe03630040.jpg都可以


C语言入门

C语言入门视频教程,带你进入编程世界的必修课-C语言

926025 学习 · 20793 问题

查看课程

相似问题