0_0_13797797_13429.cpp:1:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_13797797_13429.cpp:2:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_13797797_13429.cpp:3:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_13797797_13429.cpp:4:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_13797797_13429.cpp:5:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_13797797_13429.cpp:6:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_13797797_13429.cpp:7:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_13797797_13429.cpp: In member function 'void Complex::Read()':
0_0_13797797_13429.cpp:24:30: error: 'scanf' was not declared in this scope
scanf("%d%d%d",&p.x,&p.y,&r);
^
0_0_13797797_13429.cpp: At global scope:
0_0_13797797_13429.cpp:27:1: error: 'vector' does not name a type
vector can[MAX];
^
0_0_13797797_13429.cpp: In function 'double Calc(const Point&, const Point&)':
0_0_13797797_13429.cpp:34:75: error: 'sqrt' was not declared in this scope
return sqrt((p1.x - p2.x) * (p1.x - p2.x) + (p1.y - p2.y) * (p1.y - p2.y));
^
0_0_13797797_13429.cpp: In function 'double GetArea(const Point&, const Point&, const Point&)':
0_0_13797797_13429.cpp:41:48: error: 'sqrt' was not declared in this scope
return sqrt(p * (p - l1) * (p - l2) * (p - l3));
^
0_0_13797797_13429.cpp: In function 'bool InRange(const Complex&, const Point&, const Point&)':
0_0_13797797_13429.cpp:49:1: error: expected ';' before '}' token
}
^
0_0_13797797_13429.cpp: In function 'void BuildGraph(int)':
0_0_13797797_13429.cpp:70:28: error: 'memset' was not declared in this scope
memset(head,0,sizeof(head));
^
0_0_13797797_13429.cpp:73:3: error: expected ';' before 'Insert'
Insert(S,i,ans / _time[i] + 1);
^
0_0_13797797_13429.cpp:73:33: error: expected ')' before ';' token
Insert(S,i,ans / _time[i] + 1);
^
0_0_13797797_13429.cpp:74:7: error: 'vector' has not been declared
for(vector::iterator it = can[i].begin(); it != can[i].end(); ++it)
^
0_0_13797797_13429.cpp:74:45: error: 'it' was not declared in this scope
for(vector::iterator it = can[i].begin(); it != can[i].end(); ++it)
^
0_0_13797797_13429.cpp:74:51: error: 'can' was not declared in this scope
for(vector::iterator it = can[i].begin(); it != can[i].end(); ++it)
^
0_0_13797797_13429.cpp:74:55: error: 'i' was not declared in this scope
for(vector::iterator it = can[i].begin(); it != can[i].end(); ++it)
^
0_0_13797797_13429.cpp: At global scope:
0_0_13797797_13429.cpp:77:2: error: expected unqualified-id before 'for'
for(int i = 1; i
^
0_0_13797797_13429.cpp:77:17: error: 'i' does not name a type
for(int i = 1; i
^
0_0_13797797_13429.cpp:79:1: error: expected declaration before '}' token
}
^
|