Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- class Aviao
- {
- public:
- int velocidade = 10;
- int velocidadeMax;
- string tipo;
- void ini(int tipo);
- private:
- };
- /*
- Tipos:
- 1 - Jato.
- 2 - Monomotor.
- 3 - Planador.
- */
- void Aviao::ini(int tipo)
- {
- switch(tipo)
- {
- case 1:
- {
- this -> velocidadeMax = 800;
- this -> tipo = "Jato";
- break;
- }
- case 2:
- {
- this -> velocidadeMax = 350;
- this -> tipo = "Monomotor";
- break;
- }
- case 3:
- {
- this -> velocidadeMax = 180;
- this -> tipo = "Planador";
- break;
- }
- }
- }
- int main()
- {
- Aviao * av1 = new Aviao();
- int valor;
- cout << "Digite o ID de um aviao, Que mostrara sua velocidade maximo\n1 - Jato\n2 - Monomotor\n3 - Planador\n-> ";
- cin >> valor;
- av1 -> ini(valor);
- cout << "Velocidade de: " << av1 -> velocidadeMax << "KM/H";
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement