Viết chương trình thực hiện tất cả các phép toán số học

Các bước thực hiện:

 1. Nhập vào 2 số nguyên

2. Thực hiện các phép toán + - * / %

3. In ra kết quả

Code tham khảo:

#include <stdio.h>
int main()
{
int num1, num2;
int sum, sub, mult, mod;
float div;

/*Input two numbers from user*/
printf("Enter any two numbers: ");
scanf("%d%d", &num1, &num2);

/*Perform all arithmetic operations*/
sum = num1 + num2;
sub = num1 - num2;
mult = num1 * num2;
div = (float)num1 / num2;
mod = num1 % num2;

/*Print result of all arithmetic operations*/
printf("Sum = %d\n", sum);
printf("Difference = %d\n", sub);
printf("Product = %d\n", mult);
printf("Quotient = %f\n", div);
printf("Modulus = %d", mod);

return 0;
}