Posts by Brito • 19 points
1 post
-
1
votes4
answers5419
viewsA: Vector without repeated numbers in C
#include <cstdio> int vetorA[4]; int i, k; int main() { printf("\nDigite 4 elementos para o Conjunto A:\n"); for(i=0;i<4;i++){//Carregando o vetor …