博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
字符串转整型C++
阅读量:5023 次
发布时间:2019-06-12

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

#include
#include
using namespace std;int myAtoi(string str) { string s=""; int result; bool flag=true; for(int i=0; i
= '0' && str[i] <='9') || str[i] =='-'|| str[i] ==' ' || str[i] == '+') ){ break; } if(str[i] == ' ' && flag){ continue; }else{ flag= false; s+=str[i]; } } int Int;// stringstream ss;// ss << s;// ss >> Int; char st[1000000]; for(int j=0; j
= INT_MAX){ result = INT_MAX; }else if(Int <= INT_MIN){ result = INT_MIN; } else{ result = Int; } return result; }int main(){ cout<

 

转载于:https://www.cnblogs.com/zhishoumuguinian/p/9949359.html

你可能感兴趣的文章
UVALive 4730 Kingdom +段树和支票托收
查看>>
[APIO2010]特别行动队
查看>>
[SCOI2016]幸运数字
查看>>
SpringBoot 集成ehcache
查看>>
初步swift语言学习笔记2(可选类型?和隐式可选类型!)
查看>>
Nginx + Tomcat 反向代理 如何在高效的在一台服务器部署多个站点
查看>>
在Vs2012 中使用SQL Server 2012 Express LocalDB打开Sqlserver2012数据库
查看>>
在Macos下完美解决Adobe Dreamweaver CC 2018 汉化及操作方法
查看>>
【转】 Newtonsoft.Json高级用法
查看>>
CodeBlocks X64 SVN 编译版
查看>>
Excel催化剂开源第42波-与金融大数据TuShare对接实现零门槛零代码获取数据
查看>>
bug记录_signalr执行$.connnection.testhub结果为空
查看>>
【转】常用的latex宏包
查看>>
[TMS320C674x] 一、GPIO认识
查看>>
酷狗的皮肤文件存放在哪
查看>>
iOS RunLoop简介
查看>>
C++的引用
查看>>
T-SQL查询进阶--深入浅出视图
查看>>
MapKeyboard 键盘按键映射 机械革命S1 Pro-02
查看>>
Android读取url图片保存及文件读取
查看>>