Search found 1 match

by arjun2304
Mon Jun 04, 2012 11:23 am
Forum: Volume 109 (10900-10999)
Topic: 10947 - Bear with me, again..
Replies: 23
Views: 5597

10947 - Bear with me, again..

#include<iostream>
#include<cstdio>
#include<cmath>
#include<climits>

using namespace std;

int xc[110],yc[110],r[110];
double a[110][110];

double min(double x,double y)
{
if(x>y)return y;
return x;
}
double max(double x,double y)
{
if(x>y)return x;
return y;
}
double distance(int x1,int y1 ...

Go to advanced search