找零计算器 2.0
#include <stdio.h>
int main()
{ int price = 0;
int bill = 0;
printf("请输入票面:");
scanf("%d", &bill);
printf("请输...
Read More