SALVE VI POSTO IL CODICE DI UN ESERCIZIO DI PROGRAMMAZIONE:
Si sviluppi un programma che consente di stampare a video gli studenti che hanno preso un voto maggiore ad uno dato. Il programma deve essere strutturato nel seguente modo:
1. struttura studente (nome, cognome, votoesameelementi)
2. funzione capace di stampare uno studente
3. funzione che costruisce un vettore di studenti con voto maggiore di uno dato.
Sviluppate le 3 funzioni, il main deve fare inserire un vettore di studenti, utilizzando la funzione di stampa, stampare i primi due studenti inseriti.
Stampare a video tutti gli studenti (solo cognome) con voto maggiore di un voto inserito da tastiera.
Infine si sviluppi una funzione
4. funzione capace di cercare uno specifico studente (cognome oppure nome).
Il main richiamando la funzione 4 deve cercare e stampare lo studente cercato (con il voto di esame)
#include<iostream>
#include<stdlib.h>
#include<string.h>
#define N 10
#define C 10
using std::cin;
using std::cout;
typedef struct studente
{int voto;
char nome[N],cognome[C];
}array;
void stampa(int,array,int);
array costruzionearray(int,array,int,int);
void ricerca(int,array);
int main()
{int n,i,c=0,elemento,j,f=0;
cout<<" \n inserire il n* totale di studenti ";
cin>>n;
array agenda[n];
for(i=0;i<n;i++)
{cout<<" \n inserire i dati del "<<i+1<<" * studente\n";
cout<<"nome: ";
cin>>agenda.nome;
cout<<"\n cognome: ";
cin>>agenda.cognome;
cout<<" \n inserire voto esame: ";
cin>>agenda.voto;
}
stampa(n,*agenda,c);
c++;
stampa(n,*agenda,c);
cout<<" \n inserire discriminante \n";
cin>>elemento;
for(j=0;j<n;j++)
{if(agenda[j].voto>= elemento)
{f++;
}
}
costruzionearray(n,*agenda,elemento,f);
ricerca(n,agenda);
}
void stampa(int n,array *prova,int w)
{cout<<"\n dati del "<<w+1<<" * studente \n";
cout<<"\n nome: "<<prova[w].nome;
cout<<" \n cognome: "<<prova[w].cognome;
cout<<"\n voto: "<<prova[w].voto;
}
array costruzione_array (int n, array *agenda,int &elemento,int &f)
{array B[f];
int k,l=0,h;
for(k=0;k<n;k++)
{if (agenda[k].voto>= elemento)
{strcpy(B[l].nome,agenda[k].nome);
strcpy(B[l].cognome,agenda[k].cognome);
B[l].voto= agenda[k].voto;
l++;
}
}
for(h=0;h<f;h++)
{stampa(f,*B,h);
}
}
void ricerca(int n,array *agenda)
{char L[N],Q[C];
int x;
cout<<"\n inserire nome da ricercare : ";
cin>>L;
cout<<"\n inserire cognome da ricercare: ";
cin>>Q;
for(x=0;x<n;x++)
{if(agenda[x].nome==L && agenda[x].cognome==Q)
{stampa(n,*agenda,x);
}
}
}
IL PROBLEMA CHE INCONTRO (NON AVENDO ESPERIENZA SUI PUNTATORI E' IL PASSAGGIO DEL RECORD AGENDA,CHE MI VIENE SEGNALATO COME ERRORE (A QUANTO NE ABBIA CAPITO)
42 17 C:\Users\marco\Desktop\esempio esame rivisitato806201816e42.cpp [Error] could not convert '(array*)(& agenda)' from 'array* {aka studente*}' to 'array {aka studente}'
COME POSSO RISOLVERE?
GRAZIE IN ANTICIPO PER LA PAZIENZA =)