what's wrong?!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <iostream>
#include <conio.h>
using namespace std;

class Elevador {
      int andarAtual, andaresTotal, capacidadeElevador, numeroPassageiros;
      public:
             Elevador() {andarAtual = 0; numeroPassageiros = 0;}
             void iniciaElevador(int a, int b) {capacidadeElevador = a; andaresTotal = b;}
             void EntraElevador();
};

void EntraElevador() {
     if (numeroPassageiros == capacidadeElevador)
        cout << "Nao ha espaco para mais passageiros no elevador." << endl;
        else {
             numeroPassageiros++;
             cout << "Mais um passageiro. " << numeroPassageiros << " no momento." << endl;
        }
}

int main () {
    Elevador Eleva;
    Eleva.iniciaElevador(8, 13);
    Eleva.EntraElevador();
    getch();
    return 0;
}


In fuction 'void EntraElevador();':
'numeroPassageiros undeclared (first use this function)
(Each undeclared identifier is reported only once for each function it appears in.)
'capacidadeElevador' undeclared (first use this function)
Line 13:

return_type class::function_to_define(arguments) {
^That is how you begin to define a member function outside of your class. Using this template, do you think you can solve the problem?

-Albatross
Last edited on
oh. --'
thanks
Topic archived. No new replies allowed.