博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c语言atoll函数怎么用_C ++中带有示例的atoll()函数
阅读量:2528 次
发布时间:2019-05-11

本文共 1930 字,大约阅读时间需要 6 分钟。

c语言atoll函数怎么用

C ++ Atoll()函数 (C++ atoll() function)

atoll() function is a library function of cstdlib header. It is used to convert the given string value to the integer value. It accepts a string containing an integer (integral) number and returns its long long long integer value.

atoll()函数cstdlib标头的库函数。 它用于将给定的字符串值转换为整数值。 它接受包含整数(整数)的字符串,并返回其long long long整数值。

Syntax of atoll() function:

atoll()函数的语法:

C++11:

C ++ 11:

long long int atoll (const char * str);

Parameter(s):

参数:

  • str – represents a string containing an integer (integral) number.

    str –表示包含整数(整数)的字符串。

Return value:

返回值:

The return type of this function is long long int, it returns the long long long integer converted value.

此函数的返回类型为long long int ,它返回long long long long整数转换后的值。

Example:

例:

Input:    str = "123456789012345";    Function call:    atoll(str);    Output:    123456789012345

C ++代码演示atoll()函数示例 (C++ code to demonstrate the example of atoll() function)

// C++ code to demonstrate the example of// atoll() function#include 
#include
#include
using namespace std;// main() sectionint main(){ char str[50]; strcpy(str, "123456789"); cout << "atoll(\"" << str << "\"): " << atoll(str) << endl; strcpy(str, "-123456789"); cout << "atoll(\"" << str << "\"): " << atoll(str) << endl; strcpy(str, "0"); cout << "atoll(\"" << str << "\"): " << atoll(str) << endl; strcpy(str, "9876543120"); cout << "atoll(\"" << str << "\"): " << atoll(str) << endl; strcpy(str, "-9876543120"); cout << "atoll(\"" << str << "\"): " << atoll(str) << endl; strcpy(str, "123456789012345"); cout << "atoll(\"" << str << "\"): " << atoll(str) << endl; return 0;}

Output

输出量

atoll("123456789"): 123456789atoll("-123456789"): -123456789atoll("0"): 0atoll("9876543120"): 9876543120atoll("-9876543120"): -9876543120atoll("123456789012345"): 123456789012345

Reference:

参考:

翻译自:

c语言atoll函数怎么用

转载地址:http://evtzd.baihongyu.com/

你可能感兴趣的文章
Java与算法之(2) - 快速排序
查看>>
Windows之IOCP
查看>>
机器学习降维之主成分分析
查看>>
CTP2交易所成交回报
查看>>
WebSocket & websockets
查看>>
《机器学习实战》学习笔记第二章 —— K-近邻算法
查看>>
uni-app 引入本地iconfont的正确姿势以及阿里图标引入
查看>>
DSB
查看>>
Java中的阻塞队列
查看>>
前端软件sublime的一些常用快捷键
查看>>
openssl 升级
查看>>
2017.10.30 天晴 昨天十公里没减肥
查看>>
Git 打标签(分布式版本控制系统)
查看>>
ASP.NET MVC:通过 FileResult 向 浏览器 发送文件
查看>>
CVE-2010-2883Adobe Reader和Acrobat CoolType.dll栈缓冲区溢出漏洞分析
查看>>
使用正确的姿势跨域
查看>>
AccountManager教程
查看>>
Android学习笔记(十一)——从意图返回结果
查看>>
算法导论笔记(四)算法分析常用符号
查看>>
HttpClient读取数据乱码的解决方案
查看>>