Código C++:
Ver original
void stadium(float []) { cout << "Plays in his stadium the team" << "not important" << "?" << endl; cin >> result; if (result == true){ team1[0] = {2}; }else{ team1[0] = {0}; } } int main () { stadium(team1); cout << team1[0]; return 0; }
Pero necesito que la funcion sea aplicable a 30 variables mas...:
Código C++:
Ver original
void stadium (float []) { cout << "Plays in his stadium the team" << "NAME OF THE ARGUMENT 1 ( array that is in the argument )" << "?" << endl; cin >> result; if (result == true){ teamWrittedInTheArgument[0] = {2}; }else{ teamWrittedInTheArgument[0] = {0}; } } int main () { stadium(teamX); return 0; }
#######################
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 :)