atoi函数的使用(将字符串转换成整型数)
Posted 路人姜。
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了atoi函数的使用(将字符串转换成整型数)相关的知识,希望对你有一定的参考价值。
原型:
int atoi(const char *nptr);
头文件:#include <stdlib.h>
简介
atoi(ascii to integer):是把字符串转换成整型数的一个函数。atoi( ) 函数会扫描参数 nptr字符串,跳过前面的空白字符(例如空格,tab缩进等。——百度百科
栗子:
#include<iostream>
#include<stdio.h>
#include<cstdlib>
using namespace std;
int main()
{
char s[101];
int n;
scanf("%s",s);
n=atoi(s);
printf("%d\n",n);
getchar();//吸收回车
gets(s);//输入带有空格的字符串会在空格处终止
n=atoi(s);
printf("%d\n",n);
return 0;
}
以上是关于atoi函数的使用(将字符串转换成整型数)的主要内容,如果未能解决你的问题,请参考以下文章