0_0_19807408_5705.cpp:1:17: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_19807408_5705.cpp:2:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_19807408_5705.cpp:4:1: error: '__int64' does not name a type
__int64 C(int n,int m)
^
0_0_19807408_5705.cpp: In function 'int main()':
0_0_19807408_5705.cpp:18:5: error: '__int64' was not declared in this scope
__int64 a[25]={0,0,1},s;
^
0_0_19807408_5705.cpp:18:26: error: expected primary-expression before ',' token
__int64 a[25]={0,0,1},s;
^
0_0_19807408_5705.cpp:18:27: error: 's' was not declared in this scope
__int64 a[25]={0,0,1},s;
^
0_0_19807408_5705.cpp:20:9: error: 'a' was not declared in this scope
a[i]=(i-1)*(a[i-1]+a[i-2]);
^
0_0_19807408_5705.cpp:21:5: error: 'cin' was not declared in this scope
cin>>c;
^
0_0_19807408_5705.cpp:25:11: error: 'a' was not declared in this scope
s=a[m]*C(n,n-m);
^
0_0_19807408_5705.cpp:25:23: error: 'C' was not declared in this scope
s=a[m]*C(n,n-m);
^
0_0_19807408_5705.cpp:26:27: error: 'printf' was not declared in this scope
printf("%I64d\n",s);
^
|