Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- struct Calciatore {
- string cognome="";
- int goalSegnati=0;
- Calciatore *next = nullptr;
- };
- void ins_testa(Calciatore* &il, Calciatore* nuovo)
- {
- nuovo->next = il;
- il = nuovo;
- }
- int main()
- {
- Calciatore *il = nullptr;
- Calciatore *nuovo = nullptr;
- do {
- //creiamo un nodo
- nuovo = new Calciatore;
- cout << "Inserire il cognome (stop per uscire): ";
- cin >> nuovo->cognome;
- if (nuovo->cognome !="stop")
- {
- cout << "Goal segnati da questo calciatore: ";
- cin >> nuovo->goalSegnati;
- ins_testa(il, nuovo);
- }
- } while (nuovo->cognome!="stop");
- cout << il->cognome << " - " << il->next->cognome << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement