hi i am having a hard time with this program. i need to determine if the integer the user enters is a multiple of 5 or not with a modulus. this is what i got so far
int num = 0;
if (num % 5 == 0)
cout << num1 << " is a multiple of " <<num1 << endl;
}
else
(num % 5 == 0);
cout << num1 << " is not a multiple of " <<num1<< endl;
{
return 0;
}