130 divided by -10

Calculation: 130 divided by -10

To calculate 130 divided by -10, we can use the division operation in C++. Here's the code snippet:

int result = 130 / -10;

The variable result will store the quotient of the division operation. In this case, the value of result will be -13.

Explanation: - The division operator / is used to divide the dividend (130) by the divisor (-10). - The result of the division is -13, which means that 130 divided by -10 is equal to -13.

Please let me know if you need any further assistance!