10 lines
173 B
C++
10 lines
173 B
C++
#include<iostream>
|
|
using namespace std;
|
|
int main()
|
|
{
|
|
int m=540/(120+150);
|
|
cout<<"五年级分得"<<m*120<<"棵树苗"<<endl;
|
|
cout<<"六年级分得"<<m*150<<"棵树苗";
|
|
while(true);
|
|
}
|