0_0_32027239_21122.cpp:1:1: error: 'include' does not name a type
include<stdio.h>
^
0_0_32027239_21122.cpp: In function 'int init()':
0_0_32027239_21122.cpp:6:2: error: 'array' was not declared in this scope
array[0]=1;
^
0_0_32027239_21122.cpp: At global scope:
0_0_32027239_21122.cpp:18:17: error: '__int64' has not been declared
int dfs(int num,__int64 n)
^
0_0_32027239_21122.cpp: In function 'int dfs(int, int)':
0_0_32027239_21122.cpp:22:8: error: 'array' was not declared in this scope
if(n>array[i]*array[num-1-i])
^
0_0_32027239_21122.cpp:28:4: error: '__int64' was not declared in this scope
__int64 x=n%array[num-1-i]==0?n/array[num-1-i]:n/array[num-1-i]+1;
^
0_0_32027239_21122.cpp:31:15: error: 'printf' was not declared in this scope
printf("(");
^
0_0_32027239_21122.cpp:32:10: error: 'x' was not declared in this scope
dfs(i,x);
^
0_0_32027239_21122.cpp:35:14: error: 'printf' was not declared in this scope
printf("X");
^
0_0_32027239_21122.cpp:39:35: error: 'x' was not declared in this scope
dfs(num-1-i,n-array[num-1-i]*(x-1));
^
0_0_32027239_21122.cpp: In function 'int main()':
0_0_32027239_21122.cpp:50:2: error: '__int64' was not declared in this scope
__int64 n;
^
0_0_32027239_21122.cpp:52:23: error: 'n' was not declared in this scope
while(scanf("%I64d",&n)!=EOF&&n>0)
^
0_0_32027239_21122.cpp:52:24: error: 'scanf' was not declared in this scope
while(scanf("%I64d",&n)!=EOF&&n>0)
^
0_0_32027239_21122.cpp:52:27: error: 'EOF' was not declared in this scope
while(scanf("%I64d",&n)!=EOF&&n>0)
^
0_0_32027239_21122.cpp:54:11: error: expected ';' before 'temp'
__int64 temp=0;
^
0_0_32027239_21122.cpp:58:7: error: 'temp' was not declared in this scope
if(temp+array[i]>=n)
^
0_0_32027239_21122.cpp:58:12: error: 'array' was not declared in this scope
if(temp+array[i]>=n)
^
0_0_32027239_21122.cpp:64:4: error: 'temp' was not declared in this scope
temp+=array[i];
^
0_0_32027239_21122.cpp:64:10: error: 'array' was not declared in this scope
temp+=array[i];
^
0_0_32027239_21122.cpp:67:14: error: 'printf' was not declared in this scope
printf("\n");
^
|