0_0_37833712_25418.c:6:8: error: variably modified 'dp' at file scope
double dp[N],p[100];
^
0_0_37833712_25418.c: In function 'main':
0_0_37833712_25418.c:11:3: error: expected expression before '/' token
//printf("%lld\n",(1<<2));
^
0_0_37833712_25418.c:14:3: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i=0;i<n;++i)scanf("%lf",&p[i]);
^
0_0_37833712_25418.c:14:3: note: use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 to compile your code
0_0_37833712_25418.c:16:3: error: expected expression before '/' token
//printf("%lld %lld\n",n,State);
^
0_0_37833712_25418.c:18:11: error: redefinition of 'i'
for(int i=State-1;i>=0;--i)
^
0_0_37833712_25418.c:14:11: note: previous definition of 'i' was here
for(int i=0;i<n;++i)scanf("%lf",&p[i]);
^
0_0_37833712_25418.c:18:3: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i=State-1;i>=0;--i)
^
0_0_37833712_25418.c:21:4: error: expected expression before '/' token
//dp[i]=1.0;
^
0_0_37833712_25418.c:22:4: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int j=0;j<n;++j)
^
0_0_37833712_25418.c:30:4: error: expected expression before '/' token
//printf("%lf\n",P);
^
|