8 lines
128 B
C++
8 lines
128 B
C++
#include<iostream>
|
||
using namespace std;
|
||
int main()
|
||
{
|
||
cout<<"原来做791套衣服的布,现在可以做"<<3.2*791/2.8<<"套";
|
||
while(true);
|
||
}
|