Subscribe Us

Responsive Advertisement

Advertisement

URI Online Judge | 2175 What is the Fastest? solution in cpp

 

uri 2175 solution in cpp

by ujjal roy



#include<bits/stdc++.h>

using namespace std;

main()

{

    double o,b,i;

    cin>>o>>b>>i;

    if(o<b&&o<i) cout<<"Otavio"<<endl;

    else if(b<o&&b<i) cout<<"Bruno"<<endl;

    else if( i<b&&i<o) cout<<"Ian"<<endl;

    else cout<<"Empate"<<endl;

    return 0;

}


Post a Comment

0 Comments