讯飞四道编程题个人思路 第一题: 有面值1,5,10,50,100,分别对应变量:a、b、c、d、e 若有k元钱,最少多少张纸币能找零,若不能则输出-1 public class Main { public static int minMoney(int[] nums,int target){ int[] money = {1,5,10,50,100}; int count = 0; for (int i=4;i>=0;i--){ int shang = target/mo...