Anyone tell me why regardless of value of 'op' the four 'if' statements are processed please?
thanks
Graham
#include <iostream>
int add(int a,int b);
int subtract(int a, int b);
int multiply(int a,int b);
int divide(int a,int b);
int main()
{
using namespace std;
int numa, numb, ans...