题1(种菜)算数题。 #include <iostream> using namespace std; int main() { int x, y, z; cin >> x >> y >> z; int d = x * 3 + y; int day = z / d; int res; if (day * d < z) { day++; } if (day * d == z) { res = day * 3; } else { ...