Acquisisci una stringa invece di un float e usa atoi (principalmente per evitare una eccezione)
codice:#include <string> ... string line; do { getline(cin,line); aux = atoi(line.c_str()); } while (aux ==0);
Acquisisci una stringa invece di un float e usa atoi (principalmente per evitare una eccezione)
codice:#include <string> ... string line; do { getline(cin,line); aux = atoi(line.c_str()); } while (aux ==0);
This code and information is provided "as is" without warranty of any kind, either expressed
or implied, including but not limited to the implied warranties of merchantability and/or
fitness for a particular purpose.