#include<iostream>
using namespace std;
int main()
{
double money;
cout << "Input the sum of money: ";
cin >> money;
....
I have been trying to check if the value entered is a numeric value so that i can display an error message if another value (alphabetic letter) is entered and the code will loop back to ask for the input again (the money)