//range
cout << "input the start of the range: " << endl;
cin >> low;
if (low <= 0) {
cout << "unable to check non-posative values." << endl << "exiting" << endl;
}
cout << "input the end of the range: " << endl;
cin >> high;
if (high <= 0) {
cout << "unable to check non-posative values." << endl << "exiting" << endl;
}
if (low > high) {
varSwitch (low, high);
}
amicNums (int low, int high);
return 0;
}
this line of code ..... amicNums (int low, int high); ..... has an error that says (expected primary expression before "int" idk why this is could someone please help... Thank you