c++中的atoi怎么用?string 是C++ STL定义的类型copy,atoi是 C 语言的库函数,所以要先转换成 char* 类型才可以用 atoi。 string s; cin>>s; int result = atoi( s.c_str() ); (atoi 这个函2113数比较弱, 只能读一个数字。 真正NB的是 strtol 函数。) //==================================...