Faça um programa em C , que preencha um vetor de 100 , com os 100 primeiros naturais que não são múltiplos de 7 ou que terminam com 7 .
Respostas
respondido por:
7
Acho que seria assim:
#include <stdio.h>#include <stdlib.h>
bool teste(int n) { if (((n % 7) != 0) || (((n + 3) % 10) == 0) ) { return true; } else { return false; }}
int main() {
int i, vetor[100];
for (i = 0; i <= 100; i++) { if (teste(i)) { printf("%d - ", i); } }
system("pause"); return 0;}
#include <stdio.h>#include <stdlib.h>
bool teste(int n) { if (((n % 7) != 0) || (((n + 3) % 10) == 0) ) { return true; } else { return false; }}
int main() {
int i, vetor[100];
for (i = 0; i <= 100; i++) { if (teste(i)) { printf("%d - ", i); } }
system("pause"); return 0;}
respondido por:
8
Resposta:
#include <stdio.h>
int main(){
int vetor[100], i, j = 0;
for(i = 0; i < 100; i++){
while(j % 7 == 0 || j % 10 == 7){
j = j + 1;
}
vetor[i] = j;
j = j + 1;
}
printf("Vetor gerado: ");
for(i = 0; i < 100; i++){
printf("%d ", vetor[i]);
}
return 0;
}
Explicação:
Perguntas similares
6 anos atrás
6 anos atrás
6 anos atrás
8 anos atrás
8 anos atrás
9 anos atrás
9 anos atrás
9 anos atrás