“ Ctrl AC!一起 AC!”
我的翻译:
描述
找出 4 个商品的价格,使价格总和为 711,价格的乘积为 711000000。商品的价格按升序排列。
输入
无
输出
一行包含四个整数,表示物品的价格。(其实题目的输出描述错了 应该是一行一个,哈哈)
不认识的单词:
ascend 上升
AC代码:
这题就是枚举得到的答案,直接输出,一行一个(上面说了:题目错了)
#include<iostream>
#include<cstdio>
using namespace std;
int main(){
cout<<120<<endl;
cout<<125<<endl;
cout<<150<<endl;
cout<<316<<endl;
return 0;
}
感谢阅读!!!
“ Ctrl AC!一起 AC!”