Search results

  1. I

    anyone can write this c++ code.

    i have this code. i am learning cpp. i am beginner and trying to learn programming #include <iostream> #include <vector> #include <cmath> using namespace std; struct point { int x;int y; point () {} point (int a,int b) : x(a) , y(b) {} friend float dist...
  2. I

    anyone can write this c++ code.

    Given set of points in the plane 1. The minimum distance between two points. 2. The maximum distance between two points. 3. The largest area of a triangle which has vertices at given points. 4. The area of a convex hull of the set of points. The values should be computed as a number...
Back
Top