輸入要購買的蘋果汁瓶數,並計算共花了多少錢?
請全數修正下列有錯誤程式碼。
#include <stdio.h>
#include <stdlib.h>
int main()
{
int unit;
double price=23.34;
int total;
printf("請問您要買幾瓶蘋果汁? ");
scanf("%d", unit);
total = unit*price;
printf("我買了%d瓶100%的蘋果汁\n", unit);
printf("花了%f元", total);
return 0;
}
5
請問您要買幾瓶蘋果汁? 我買了5瓶100%的蘋果汁 花了116.700000元
注意浮點數的精確度
編號 | 身分 | 題目 | 主題 | 人氣 | 發表日期 |
沒有發現任何「解題報告」 |