0_0_16223133_30972.cpp:11:1: error: 'LL' does not name a type
LL sum, aa, bb, cc;
^
0_0_16223133_30972.cpp:13:1: error: 'LL' does not name a type
LL gcd(LL a, LL b)
^
0_0_16223133_30972.cpp:18:26: error: 'LL' has not been declared
void find(int x, char c, LL a, LL b)
^
0_0_16223133_30972.cpp:18:32: error: 'LL' has not been declared
void find(int x, char c, LL a, LL b)
^
0_0_16223133_30972.cpp: In function 'void find(int, char, int, int)':
0_0_16223133_30972.cpp:20:19: error: 'aa' was not declared in this scope
if (c == '+') aa = a + b*x, bb = b;
^
0_0_16223133_30972.cpp:20:33: error: 'bb' was not declared in this scope
if (c == '+') aa = a + b*x, bb = b;
^
0_0_16223133_30972.cpp:21:19: error: 'aa' was not declared in this scope
if (c == '-') aa = a - b*x, bb = b;
^
0_0_16223133_30972.cpp:21:33: error: 'bb' was not declared in this scope
if (c == '-') aa = a - b*x, bb = b;
^
0_0_16223133_30972.cpp:22:19: error: 'aa' was not declared in this scope
if (c == '*') aa = a*x, bb = b;
^
0_0_16223133_30972.cpp:22:29: error: 'bb' was not declared in this scope
if (c == '*') aa = a*x, bb = b;
^
0_0_16223133_30972.cpp:23:19: error: 'aa' was not declared in this scope
if (c == '/') aa = a, bb = b*x;
^
0_0_16223133_30972.cpp:23:27: error: 'bb' was not declared in this scope
if (c == '/') aa = a, bb = b*x;
^
0_0_16223133_30972.cpp:24:9: error: 'aa' was not declared in this scope
if (aa == 0) { bb = 1; return; }
^
0_0_16223133_30972.cpp:24:20: error: 'bb' was not declared in this scope
if (aa == 0) { bb = 1; return; }
^
0_0_16223133_30972.cpp:25:9: error: 'bb' was not declared in this scope
if (bb == 0) return;
^
0_0_16223133_30972.cpp:26:5: error: 'cc' was not declared in this scope
cc = gcd(aa, bb);
^
0_0_16223133_30972.cpp:26:14: error: 'aa' was not declared in this scope
cc = gcd(aa, bb);
^
0_0_16223133_30972.cpp:26:18: error: 'bb' was not declared in this scope
cc = gcd(aa, bb);
^
0_0_16223133_30972.cpp:26:20: error: 'gcd' was not declared in this scope
cc = gcd(aa, bb);
^
0_0_16223133_30972.cpp: At global scope:
0_0_16223133_30972.cpp:30:24: error: 'LL' has not been declared
void dfs(int x, int y, LL a, LL b)
^
0_0_16223133_30972.cpp:30:30: error: 'LL' has not been declared
void dfs(int x, int y, LL a, LL b)
^
0_0_16223133_30972.cpp: In function 'void dfs(int, int, int, int)':
0_0_16223133_30972.cpp:32:11: error: 'sum' was not declared in this scope
if (b*sum == a) flag = true;
^
0_0_16223133_30972.cpp:38:23: error: 'aa' was not declared in this scope
dfs(x - 2, y, aa, bb);
^
0_0_16223133_30972.cpp:38:27: error: 'bb' was not declared in this scope
dfs(x - 2, y, aa, bb);
^
0_0_16223133_30972.cpp:43:23: error: 'aa' was not declared in this scope
dfs(x, y - 2, aa, bb);
^
0_0_16223133_30972.cpp:43:27: error: 'bb' was not declared in this scope
dfs(x, y - 2, aa, bb);
^
0_0_16223133_30972.cpp:48:23: error: 'aa' was not declared in this scope
dfs(x + 2, y, aa, bb);
^
0_0_16223133_30972.cpp:48:27: error: 'bb' was not declared in this scope
dfs(x + 2, y, aa, bb);
^
0_0_16223133_30972.cpp:53:23: error: 'aa' was not declared in this scope
dfs(x, y + 2, aa, bb);
^
0_0_16223133_30972.cpp:53:27: error: 'bb' was not declared in this scope
dfs(x, y + 2, aa, bb);
^
0_0_16223133_30972.cpp: In function 'int main()':
0_0_16223133_30972.cpp:77:26: error: 'sum' was not declared in this scope
cin >> n >> m >> sum;
^
|