0_0_18034873_4991.cpp:13:7: error: 'MAXN' was not declared in this scope
int f[MAXN][12][12];
^
0_0_18034873_4991.cpp:16:8: error: 'MAXN' was not declared in this scope
char s[MAXN], t[MAXN];
^
0_0_18034873_4991.cpp:16:17: error: 'MAXN' was not declared in this scope
char s[MAXN], t[MAXN];
^
0_0_18034873_4991.cpp:17:7: error: 'MAXN' was not declared in this scope
int a[MAXN], b[MAXN];
^
0_0_18034873_4991.cpp:17:16: error: 'MAXN' was not declared in this scope
int a[MAXN], b[MAXN];
^
0_0_18034873_4991.cpp: In function 'int main()':
0_0_18034873_4991.cpp:29:23: error: 's' was not declared in this scope
while (scanf("%s%s", s, t) != EOF)
^
0_0_18034873_4991.cpp:29:26: error: 't' was not declared in this scope
while (scanf("%s%s", s, t) != EOF)
^
0_0_18034873_4991.cpp:34:35: error: 'f' was not declared in this scope
for (int k = 0; k <= 10; ++k) f[i][j][k] = n * 10;
^
0_0_18034873_4991.cpp:38:4: error: 'a' was not declared in this scope
a[i + 1] = s[i] - '0';
^
0_0_18034873_4991.cpp:39:4: error: 'b' was not declared in this scope
b[i + 1] = t[i] - '0';
^
0_0_18034873_4991.cpp:41:3: error: 'f' was not declared in this scope
f[0][a[1]][a[2]] = 0;
^
0_0_18034873_4991.cpp:41:8: error: 'a' was not declared in this scope
f[0][a[1]][a[2]] = 0;
^
0_0_18034873_4991.cpp:47:24: error: 'b' was not declared in this scope
int t = times[j][b[i + 1]];
^
|