总体来说不难,小弟AC了1,3题。第二题只过了90%,求大神指点 第一题:买咖啡。一杯咖啡5元,客人会付5,10,20三种面额,一次只买一杯咖啡,初始金额为0,问能否找零。 简单的模拟,注意非法输入的情况。 public class Q1 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); while (sc.hasNext()) { String[] a = sc.next().split("...