ComeçarComece de graça

Error messages

Your C++ functions can contain calls to the stop() function to raise an exception. We've partially defined a function add_positive_numbers() for you. Complete this function to raise exceptions.

Este exercício faz parte do curso

Optimizing R Code with Rcpp

Ver curso

Instruções do exercício

  • If x is negative, raise an exception with the message: "x is negative".
  • If y is negative, raise an exception with the message: "y is negative".

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

cppFunction('
  // adds x and y, but only if they are positive
  int add_positive_numbers(int x, int y) {
      // if x is negative, stop
      if(___) stop("x is negative") ;
    
      // if y is negative, stop
      if(___) ___("y is negative") ;
     
      return x + y ;
  }
')

# Call the function with positive numbers
add_positive_numbers(2, 3)

# Call the function with a negative number
add_positive_numbers(-2, 3)
Editar e executar o código