edyguilherme / CPlusPlus

0 stars 0 forks source link

Criando Namespace #15

Open edyguilherme opened 5 years ago

edyguilherme commented 5 years ago

// Criando Namespaces

include

namespace soma { int RESULTADO; }

namespace quociente { float RESULTADO; }

namespace produto { long int RESULTADO; }

namespace diferenca { double RESULTADO; }

int main(void) {

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

quociente::RESULTADO = 5.0 / 3.0; std::cout << quociente::RESULTADO << std::endl;

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

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

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