contar cuantas veces hay un numero (VARIABLE INT)

#include <iostream> using namespace std; int main(){ int numero,buscar,numeroTemp,numDigitos = 0, contador = 0, cant = 0, ultDigit; cout << "ingrese el numero: "; cin >> numero; cout << "ingrese el numero que decea buscar"; cin >> buscar; numeroTemp = numero; while(numeroTemp > 0){ numeroTemp /= 10; numDigitos ++; } numeroTemp = numero; // lo vuelvo a asignar para no tocar el numero registrado while(contador < numDigitos ) { ultDigit = numeroTemp % 10; if(ultDigit == buscar){ cant++; } numeroTemp /= 10; contador++; } cout << "El numero "; if(cant > 0){ cout << "Fue encontrado " << cant << " Veces"; } else{ cout << "No se encontro"; } cout << "\nNumero ingresado: " << numero << endl; system("pause"); return 0; }

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.