Upload files to "struct"

This commit is contained in:
Vichingo455 2025-01-31 14:08:38 +00:00
parent c4a0bbf0ba
commit 6d1aada708
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
/* /*
AUTORE: Manuel Vichi AUTORE: Manuel Vichi
(WIP) Dato Dato
*/ */
#include <iostream> #include <iostream>
#include <cstdlib> #include <cstdlib>
@ -55,6 +55,6 @@ int main(void) {
riempiArray(array,SIZEARRAY); riempiArray(array,SIZEARRAY);
stampaArray(array,SIZEARRAY); stampaArray(array,SIZEARRAY);
cout << "Occorrenze del carattere A: " << contaCar(array,SIZEARRAY,'A') << endl; cout << "Occorrenze del carattere A: " << contaCar(array,SIZEARRAY,'A') << endl;
cout << "Valore massimo: " << trovaMassimo(array,SIZEARRAY); cout << "Indice Valore massimo: " << trovaMassimo(array,SIZEARRAY);
return 0; return 0;
} }