Anderson Pozo

Generation

generate functionThu, 22 Jun 2023

Dada una lista de 10 números enteros. Calcular e informar el primer número par, el primer número primo.

#include <iostream> #include <cmath> using namespace std; bool esPrimo(int a) { bool res = true; if (a <= 1) { return false; } for(int i = 2; i < a; i++) { if(a % i == 0){ res = false; break; } } return res; } int main() { int n, primerPar, primerPrimo; for(int i = 0; i < 10; i++) { cin >> n; if(n % 2 == 0) { primerPar = n; break; } } cout << "El primer par es " << primerPar << "\n"; for(int i = 0; i < 10; i++) { cin >> n; if(esPrimo(n)) { primerPrimo = n; break; } } cout << "

Questions about programming?Chat with your personal AI assistant