Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- // Argumentos padrão para uma função;
- int boxVolume(int length =1, int width = 1, int height =1); // funcao pré definida
- int main(){
- cout<<boxVolume();// funcao pre definida, deixa a funcao ser inicializada com parametros vazios;
- cout<<boxVolume(1)<<endl;
- cout<<boxVolume(10,20)<<endl;
- cout<<boxVolume(10,20,30)<<endl;
- system("pause");
- return 0;
- }
- int boxVolume(int length , int width , int height){ // e aqui podemos trabalhar com seus argumentos;
- return length + width + height;
- }
- // Erro comum de programação especificar argumentos padrão no protótipo e no cabeçalho da função
- // Operador de soluçao de escopo unario ::
Add Comment
Please, Sign In to add comment