soy nuevo aquí. Encontré este sitio en google.C++ verifique si el número es int/float
#include <iostream>
using namespace std;
void main() {
// Declaration of Variable
float num1=0.0,num2=0.0;
// Getting information from users for number 1
cout << "Please enter x-axis coordinate location : ";
cin >> num1;
// Getting information from users for number 2
cout << "Please enter y-axis coordinate location : ";
cin >> num2;
cout << "You enter number 1 : " << num1 << " and number 2 : " << num2 <<endl;
necesito algo así, cuando los usuarios entran en caracteres alfabéticos, sería mostrar un error, dice, debe introducir los números.
Cualquier ayuda muy apreciada
uso de funciones estándar: bucle a través de todos los caracteres en el valor y comprobar con isdigit() ver aquí para un ejemplo http://www.cplusplus.com/referencia/clibrary/cctype/isdigit/ –