Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdlib.h>
- #include <stdio.h>
- #include <time.h>
- main()
- {
- // Setto il seme per rand()
- srand((unsigned)time(NULL));
- // Dichiaro i due vettori di numeri interi
- int Vet1[20], Vet2[20];
- // Riempio i due vettori con numeri casuali
- int i;
- for (i=0; i<20; i++)
- {
- Vet1[i] = rand() % 100 + 1;
- Vet2[i] = rand() % 100 + 1;
- }
- // Dichiaro il terzo vettore
- int Vet3[20];
- // Eseguo quello che dice di fa la traccia
- for (i=0; i<20; i++)
- {
- Vet3[i] = Vet1[i] + Vet2[i];
- }
- // Stampo Vet3
- for (i=0; i<20; i++)
- {
- printf("%d\n",Vet3[i]);
- }
- // Trovo il valore maggiore di Vet3
- int m = -1;
- for (i=0; i<20; i++)
- {
- if (Vet3[i] > m) m = Vet3[i];
- }
- // Stampo il numero maggiore che ho trovato
- printf("Il numero maggiore e' %d",m);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement