A. Expression1000 / 水题

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Expression1000 / 水题相关的知识,希望对你有一定的参考价值。


https://codeforces.com/problemset/problem/479/A

#include<bits/stdc++.h>
using namespace std;
int ans=0;
int main(void)
{
	int a,b,c; cin>>a>>b>>c;
	ans=max(ans,a+b+c);
	ans=max(ans,a+b*c);
	ans=max(ans,a*(b+c));
	ans=max(ans,(a+b)*c);
	ans=max(ans,a*b*c);
	cout<<ans;
	return 0;
}

以上是关于A. Expression1000 / 水题的主要内容,如果未能解决你的问题,请参考以下文章

A. Theatre Square 1000 / 水题

A. Young Physicist1000 / 水题

A. Lucky Division1000 / 水题 暴力枚举

A. Chat room1000 / 水题 子序列

A. New Year Transportation 1000 / 水题

A. New Year Candles 1000 / 水题