摘要: 860. 柠檬水找零 1 class Solution { 2 public: 3 bool lemonadeChange(vector<int>& bills) { 4 int five = 0; 5 int ten = 0; 6 int twenty = 0; 7 for(int i = 0; 阅读全文