Disqus Shortname

Sunday, August 16, 2015

Program: Add, Subtract, Multiply & Divide



#include <stdio.h>

int main()
{
int first, second, add, subtract, multiply;
float divide;

printf("Enter two integers\n");
scanf("%d%d", &first, &second);

add = first + second;
subtract = first - second;
multiply = first * second;
divide = first / (float)second; //typecasting

printf("Sum = %d\n",add);
printf("Difference = %d\n",subtract);
printf("Multiplication = %d\n",multiply);
printf("Division = %.2f\n",divide);

return 0;
}

/*-via Programming Hub for Android, a top rated Programming App on Google Play

https://play.google.com/store/apps/details?id=com.freeit.java*/


No comments:

Post a Comment