Advertisement
tegusta

federazione

Oct 8th, 2012
314
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.49 KB | None | 0 0
  1. struct squadra{
  2.        char nomeSquadra[13];
  3.        char* nomiGiocPres[5];
  4.        int anniVittoria[25];
  5. };
  6.  
  7. struct federazione{
  8.        squadra sq[20];
  9.        char nomeSport[15];
  10.        int annoFond;
  11. };
  12.  
  13. void fed(federazione f){
  14.      for(int i=0;i<f.sq[i];i++){
  15.          cout<<"\nSquadra: "<<f.sq[i].nomeSquadra;
  16.          cout<<"\nAnno vittoria: "<<f.sq[i].annoVittoria;
  17.          for(int j=0;j<5;j++)
  18.              cout<<"Giocatore: "<<f.sq[i].nomiGiocPres[j];
  19.      }//for-i
  20. }//fed
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement