DSP

字符串转整型

2019-07-13 16:49发布

// exam.cpp : 定义控制台应用程序的入口点。
// #include "stdafx.h"
#include
#include
#include
#include
#include
#include
using namespace std; int str2int(const char *str)
{
    int temp = 0;
    //ptr保存str字符串开头
    const char *ptr = str;
    //如果第一个字符是正负号,则移到下一个字符
    if (*str == '-' || *str == '+')
    {
        str++;
    }
    while (*str != '