方法:dp 就是输入两个整数m,x;x是总价,m是个数 第二行输入m个价格,问你m个价格中有几种方案相加等于x。 比如x=25,m=5, 第二行是:3,7,5,5,10,答案是两种,因为3+7+10=20,两个5算两种不同的方案 // We have imported the necessary tool classes. // If you need to import additional packages or classes, please import here. public class Main { public static void main(String[] a...