Codeforces 479 expression solution


Solve in C++:

#include<bits/stdc++.h>
using namespace std;
int main(){

int n,a,b,c;
int m[6];
while(scanf("%d%d%d",&a,&b,&c)!=EOF)
{
    m[0]=a*b*c;
    m[1]=a+b+c;
    m[2]=a+b*c;
    m[3]=a*(b+c);
    m[4]=(a+b)*c;
    m[5]=a*b+c;
    sort(m,m+6);
    printf("%d\n",m[5]);
}
}


No comments

Most View Post

Recent post

Codeforces Round 925 (Div. 3) 1931D. Divisible Pairs Solution

    Problem Link  :   https://codeforces.com/contest/1931/problem/D S olution in C++: /// Author : AH_Tonmoy #include < bits / stdc ++. ...

Powered by Blogger.