v[i] > v[i-1] v[i-2]

#include <iostream> using namespace std; int main() { int n, temp = 0, v[100]; cin >> n; // TAMAÑO DEL VECTOR for (int i = 1; i <= n; i++) // LEER ELEMENTOS DEL VECTOR cin >> v[i]; // VERIFICAR QUE CUMPLEN QUE LA SUMA DEL ELEMENTO i DEL VECTOR ES MAYOR A LA SUMA DE LOS DOS ELEMENTOS ANTERIORES for (int i = 3; i <= n; i++) { if ((v[i] > v[i-1] + v[i-2]) == false ) temp++; } if (temp > 0) cout << "No cumple"; }
Código en C++ que verifica que los elementos de un vector (con i => 3) son iguales a las suma de los dos elementos anteriores.

EJ : V = [1, 2, 3, 4, 5]
i = 3, -> v[3] = 3. 3 <> V[1] + V[2]
NO cumple.

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.