服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - C/C++ - C++中的atoi 函数简介

C++中的atoi 函数简介

2022-03-07 14:01猿说编程 C/C++

这篇文章主要给大家分享的是C++中的atoi 函数的简单介绍,在 stdlib.h 中 atoi 函数,可用于将 char 字符串转为 int 整数类型,集体的语法操作请参考下面文章的详细内容

C++中的atoi 函数简介

一.atoi 函数

stdlib.hatoi 函数,可用于将 char 字符串转为 int 整数类型,

语法如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 
*描述:将一个char类型转为整数
 
*
 
*参数:
 
*   [in] string:字符串类型
 
*
 
*返回值:返回char类型对应的整数
 
*/
 
int atoi(char *string);

二.atoi 函数函数实战

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include "stdafx.h"
 
#include <stdio.h>
 
#include "windows.h"
 
#pragma warning(disable: 4996)
 
int _tmain(int argc, _TCHAR* argv[])
 
{
 
    printf("atoi函数计算结果 %d \n", atoi("13456"));
 
    printf("atoi函数计算结果 %d \n", atoi("0"));
 
    printf("atoi函数计算结果 %d \n", atoi("789"));
 
    printf("atoi函数计算结果 %d \n", atoi("123.123")); //默认转为整数
 
    printf("atoi函数计算结果 %d \n", atoi("-9"));
 
    system("pause");
 
    return 0;
 
}

输出:

atoi函数计算结果 13456

atoi函数计算结果 0

atoi函数计算结果 789

atoi函数计算结果 123

atoi函数计算结果 -9

请按任意键继续. . .

到此这篇关于C++中的atoi 函数简介的文章就介绍到这了,更多相关atoi 函数简介内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://www.cnblogs.com/shuopython/p/15554002.html

延伸 · 阅读

精彩推荐