我想找到一种将字符串中的数字转换为整数的方法。
我能够使用isnum函数在字符串中找到数字,但问题是如何使它成为整数。

最佳答案

我认为您需要的是atoi函数。

这是cplusplus.com中的代码示例:

/* atoi example */
#include <stdio.h>      /* printf, fgets */
#include <stdlib.h>     /* atoi */

int main ()
{
  int i;
  char buffer[256];
  printf ("Enter a number: ");
  fgets (buffer, 256, stdin);
  i = atoi (buffer);
  printf ("The value entered is %d. Its double is %d.\n",i,i*2);
  return 0;
}

关于c++ - 在Turbo C++中将字符串的一部分转换为整数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45902564/

10-10 21:22