Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include <iostream>
#include <fstream>
#include <iomanip>
#include <strstream>
#define WANT_STREAM
#define WANT_MATH
#include "miscmaths.h"
#include "libprob.h"
using namespace MISCMATHS;
int main(int argc, char *argv[])
{
try{
double p = MISCMATHS::fdtr(1.4449e+12, 1, 1);
OUT(p);
}
catch(Exception p_excp)
{
cerr << p_excp.what() << endl;
}
return 0;
}