把字符串轉換成整數 劍指offer

題目描述 將一個字符串轉換成一個整數,要求不能使用字符串轉換整數的庫函數。 數值爲0或者字符串不是一個合法的數值則返回0 輸入描述: 輸入一個字符串,包括數字字母符號,能夠爲空 輸出描述: 若是是合法的數值表達則返回該數字,不然返回web class Solution { public: int StrToInt(string str) { int len = str.si
相關文章
相關標籤/搜索