Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <cmath> // Biblioteca da matematica; funcao sqrt();
- using namespace std;
- #define a 5 // definindo um valor a uma definição . Variaveis de definicao não amazena valores;
- #define b 5
- int main(){
- int d;
- sqrt(d = (a+b));// Funcao matematica,
- cout<<d<<endl;
- #undef a
- #undef b // deletando um valor de uma definiçãp
- cin.get();
- #define a 10 // Adicionando um novo valor a definicao
- #define b 10
- sqrt(d = (a+b));// Funcao matematica, WARDING NAO TENH CERTEZA DE QUE POSSA FAZER DESSA MANEIRA.
- cout<<d<<endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement