is it good?😴😭
A farming field can be plowed by 6 tractors in 4 days. When 6 tractors work together, each of them plows 120 hectares a day. If two of the tractors were moved to another field, then the remaining 4 tractors could plow the same field in 5 days. How many hectares a day would one tractor plow then? I try this 🤦🏻♀️ #include <iostream> using namespace std; int main() { int TRACTOR=6; int WORKDAY=4; int plowEachDay=120; int Hectares =TRACTOR*WORKDAY*plowEachDay; int daily; int Trac; int Days; cout<<"\n\tHOW MUCH CAN A TRACTOR PLOW EACH DAY"; cout<<"\n\n\tTractor you used: "; cin>>Trac; cout<<"\n\n\tDays Finished : "; cin>>Days; daily = Hectares/Days/Trac; cout<<"\n\n\tTractor can Plow per day: "; cout<<daily; cout<<endl; cout<<endl; cout<<endl; return 0; }