#include <algorithm>
using namespace std;
int count = 0, cache[50];
int f(int n)
{
if(n == 2) count++;
if(n == 0 || n==1) return n;
else if (cache[n] !=- 1) return cache[n];
else cache[n]= f(n-1) + f(n-2);
return cache[n];
}
he usado esta función con gcc 4.3.4, y obtuve el siguiente error:Variable global "contar" ambigua
prog.cpp: In function ‘int f(int)’:
prog.cpp:38: error: reference to ‘count’ is ambiguous
En mi máquina local (mingw32), el error que me dieron fue this one, aunque no es para int 'cache[]'
.
¿Por qué razón?
¿Es este el código C o el código C++? –
@DavidSchwartz esto es código C++, pero el mismo problema ha sucedido en C también. – Amit
@DavidSchwartz: [Does not] (http://ideone.com/qNKQI) [matter] (http://ideone.com/6cEXW). – ildjarn