10 lines
140 B
C++
10 lines
140 B
C++
#include<iostream>
|
|
using namespace std;
|
|
int main()
|
|
{
|
|
int w;
|
|
w=100/4/5;
|
|
cout<<"7辆汽车运105吨钢材要运"<<105/7/w<<"次"<<endl;
|
|
while(true);
|
|
}
|