Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

uri online judge 3145 solution in c++

#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
    int a, b;
    cin >> a >> b;
    double x;
    x = b / (a + 2.0);
    cout << fixed << setprecision(2) << x << endl;
    
    return 0;
}
Source by www.beecrowd.com.br #
 
PREVIOUS NEXT
Tagged: #uri #online #judge #solution
ADD COMMENT
Topic
Name
4+2 =