fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6. int vetor[5] = {10, 20, 30, 40, 50};
  7. int n;
  8. cout << "Digite um número: " << endl;
  9. cin >> n;
  10. bool achou = false;
  11.  
  12. for (int i = 0; i <= 4; i++) {
  13. if (n == vetor[i]) {
  14. cout << "O número " << n << " faz parte do vetor e está na posição " << (i + 1) << "." << endl;
  15. achou = true;
  16. }
  17. }
  18.  
  19. if (!achou) {
  20. cout << "O número " << n << " não faz parte do vetor." << endl;
  21. }
  22.  
  23. return 0;
  24. }
Success #stdin #stdout 0s 15240KB
stdin
12
stdout
Digite um número: 
O número 12 não faz parte do vetor.