Horje
uri online judge 3145 solution in c++ Code Example
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;
}




Cpp

Related
ue4 bind function to button clicked c++ Code Example ue4 bind function to button clicked c++ Code Example
C++ Area of Triangle Code Example C++ Area of Triangle Code Example
matrix layout in C++ Code Example matrix layout in C++ Code Example
Plus (programming language) Code Example Plus (programming language) Code Example
g++ -wall option meaning Code Example g++ -wall option meaning Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9