edyguilherme / CPlusPlus

0 stars 0 forks source link

Usando Namespace dentro Sub Rotinas #16

Open edyguilherme opened 5 years ago

edyguilherme commented 5 years ago

include

namespace soma { int RESULTADO; }

namespace quociente { float RESULTADO; }

namespace produto { long int RESULTADO; }

namespace diferenca { double RESULTADO; }

int main(void) {

using namespace produto;

RESULTADO = 5 + 3; std::cout << RESULTADO << std::endl;

RESULTADO = 5 / 3; std::cout << RESULTADO << std::endl;

RESULTADO = 5 * 3; std::cout << RESULTADO << std::endl;

RESULTADO = 5 - 3; std::cout << RESULTADO << std::endl;

std::cout << std::endl; std::cout << "Tecle para encerrar... "; std::cin.get(); return 0; }