Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //compilacion g++ -std=c++11 -o NombreEjecutable NombreFuente.cpp
- #include <iostream>
- #include <stdio.h>
- #include <stdlib.h>
- #include <time.h>
- #include <vector>
- using namespace std;
- #define MAX 100 //tamano lista definible usuario
- int main(){
- size_t max(MAX);
- vector <int> lista;
- srand(time(NULL));
- while (max--){ //Crea una lista nums aleatorios
- lista.push_back(10+rand()%(100-10));//en un vector
- }
- for (auto it:lista){//lectura lista vector
- if(( it%10 + it/10)==10) { cout<< it<< endl; }
- }
- return 0;
- }
- /*
- Dada una lista de números aleatorios, entre 10 y 100,
- crear un fragmento de código, con su lenguaje favorito,
- capaces de mostrar sólo los números cuya suma de la
- dígitos es "10".
- por ejemplo:
- 10 = 1 + 0 = 1 (mal)
- 64 = 6 + 4 = 10 (también)
- *
- http://www.solveet.com/exercises/numero-aleatorio-con-sumas-de-sus-digitos/310
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement