Write a program that take two values and print the sum,product,difference,quotient and remainder
Write a program that take two values and print the sum,product,difference,quotient and remainder-------------------------------------#include #include void main() { clrscr(); int first,second=0; double First,Second=0; cout<<"Please Enter Two Values \n"; cin>>First>>Second; first=First; second=Second; cout< cout<<"Sum = "<<< cout<<"Product = "<<<...