10 lines
133 B
C++
10 lines
133 B
C++
#include<iostream>
|
|
using namespace std;
|
|
int main()
|
|
{
|
|
int w;
|
|
w=90/3/3;
|
|
cout<<"5台拖拉机6天耕地"<<5*6*w<<"公顷"<<endl;
|
|
while(true);
|
|
}
|