|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
#include<stdio.h>
void main()
{
int id;
float price;
unsigned short num;
float amount;
float total = 0;
int item=0;
printf("请按顺序输入物品编号,单价,数量:\n");
scanf("%d,%f,%hd",&id,&price,&num);
amount = price * num;
total = total + amount;
item++;
puts("\t\t 叮当网购物订单");
puts(" 订单号:A1501 日期:2018.10.11");
puts("I--------I--------I----------I----------I");
puts("I物品编号I 单价 I 数量 I 金额 I");
puts("I--------I--------I----------I----------I");
printf(" %d %f %hd %f ",id,price,num,total);
puts("I--------I--------I----------I----------I");
puts("I I I I I");
puts("I--------I--------I----------I----------I");
printf(" 条目数:%d\t\t付款合计:%.2f\n",item,total);
system("pause");
}
输入1026,120.50,3输出结果单价,数量,金额是显示是负数,程序怎么修改
|
|