Ver Mensaje Individual
  #1 (permalink)  
Antiguo 23/11/2012, 14:22
Doch
 
Fecha de Ingreso: mayo-2012
Mensajes: 76
Antigüedad: 12 años, 6 meses
Puntos: 1
Problema de arrays y funciones

Este es el codigo para un caso especifico
Código C++:
Ver original
  1. void stadium(float [])
  2.     {
  3.         cout << "Plays in his stadium the team" << "not important" << "?" << endl;
  4.         cin >> result;
  5.  
  6.                 if (result == true){
  7.              team1[0] = {2};
  8.         }else{
  9.              team1[0] = {0};
  10.         }  
  11.  
  12.     }
  13.  
  14. int main ()
  15. {
  16.    
  17.     stadium(team1);
  18.     cout << team1[0];
  19.         system("pause");
  20.         return 0;
  21.  
  22. }

Pero necesito que la funcion sea aplicable a 30 variables mas...:

Código C++:
Ver original
  1. void stadium (float [])
  2.     {
  3.         cout << "Plays in his stadium the team" << "NAME OF THE ARGUMENT 1 ( array that is in the argument )" << "?" << endl;
  4.         cin >> result;
  5.  
  6.                 if (result == true){
  7.              teamWrittedInTheArgument[0] = {2};
  8.         }else{
  9.              teamWrittedInTheArgument[0] = {0};
  10.         }  
  11.  
  12.     }
  13.  
  14. int main ()
  15. {
  16.    
  17.     stadium(teamX);
  18.         system("pause");
  19.         return 0;
  20.  
  21. }

#######################

Explicado con solo texto:

Necesito una funcion que pregunte al usuario si el equipo del argumento juega en su estadio, escribes 1 o 0 y dependiendo de la respuestas guarda en la posicion 0 de la array el 0 o 0.2..

espero haberme explicado..gracias :)