Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- #define MAX 100
- int main()
- {
- int vet[MAX];
- int x=0;
- int y=0;
- int num;
- printf("Quanti numeri\n");
- scanf("%d", &num);
- while(x<num)
- {
- x++;
- printf("Inserisci Numero %d\n", x);
- scanf("%d", &vet[x]);
- if(vet[x]%3){
- }
- else
- {
- printf("il numero [%d] e' multiplo di 3\n", vet[x]);
- }
- }
- x=0;
- printf("i numeri multipli di 3 nel vettore sono\n\n");
- while(x<num)
- {
- x++;
- if(vet[x]%3)
- {
- }
- else
- {
- y++;
- printf("il %d numero [%d] \n",x, vet[x]);
- }
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement