fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. void texto();
  6. void soma(int n1, int n2);
  7. int soma2(int n1, int n2);
  8. void tr(string tra[4]);
  9.  
  10. int main(){
  11. int res;
  12. string transp[4]={"carro","moto","barco","aviao"};
  13.  
  14. soma(15,5);
  15. res=soma2(175,25);
  16.  
  17. cout << "valor de res: " << res << "\n";
  18.  
  19. tr(transp);
  20.  
  21. return 0;
  22. }
  23.  
  24. void texto(){
  25. cout << "canal fessor bruno\n";
  26. }
  27.  
  28. void soma(int n1, int n2){
  29. cout << "soma dos valores: " << n1+n2 << "\n";
  30. }
  31.  
  32. int soma2(int n1, int n2){
  33. return n1+n2;
  34. }
  35.  
  36. void tr(string tra[4]){
  37. for(int i=0; i<4; i++){
  38. cout << tra[i] << "\n";
  39. }
  40. }
  41.  
  42.  
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
soma dos valores: 20
valor de res: 200
carro
moto
barco
aviao