Skip to content

amiteKP/riya-mandal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

riya-mandal

calculator for everyone want to make with c java program also added

code ; #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; }

About

calculator

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors