首页 > 代码库 > LeetCode--String to Integer (atoi)

LeetCode--String to Integer (atoi)

题目:

技术分享

解决方法:

public class Solution {
    public int atoi(String s) {
        int MAX=2147483647;
        int MIN=-2147483648;
        s = s.trim();//1.去除空格
        long value = http://www.mamicode.com/0;>

LeetCode--String to Integer (atoi)