C   40
operate
Guest on 17th September 2023 09:30:17 PM


  1. /* operate on accumulator */
  2.  
  3. int operate(int accumulator, int operator, int operand)
  4. {
  5.         if (Div0 == 0) {if (operator == '+' ) {accumulator += operand;}
  6.                         else if (operator == '-') {accumulator -= operand;}
  7.                                  else if (operator == '*') { accumulator = imult(accumulator,operand);}
  8.                                       else if (operator == '/') { accumulator = idiv(accumulator,operand);}
  9.                                                else if (operator == '%') { accumulator = imod(accumulator,operand);}
  10.                                                         else {printf("Erreur d'opérateur!\n"n");
  11.                                                                                   endCLine = 1;
  12.                                                                                       endJob = 1;};
  13.                                         };
  14.         return(accumulator);

Raw Paste

Login or Register to edit or fork this paste. It's free.