[問題] 字串轉整數

作者: ting301 ( )   2014-11-13 03:44:12
以下是一字串轉整數的程式片段
例如將 *p = "12345" 轉成 int q = 12345
但有點小bug似乎是在char轉int 那部分
請給小弟一點提示??
#include<iostream>
#include<cstdlib>
#include<math.h>
using namespace std;
int convert(const char *p)
{
int len = strlen(p);
int output = 0;
for(int i=0;i<len;i++)
output += (*(p+i)) * (pow(10,len-1-i));
return output;
}
int main()
{
char *p = "12345" ;
int intp = convert(p);
cout<< "intp = "<< intp <<endl;
system("pause");
return 0;
}
作者: carylorrk (carylorrk)   2014-11-13 04:21:00
你跟樓上的是好朋友嗎?哪個老師的課啊 XDD
作者: penril0326   2014-11-13 04:48:00
樓上在說我嗎....原po問題是什麼?喔我懂了...你字元沒有轉型當然會有bug
作者: ting301 ( )   2014-11-13 05:47:00
請問 該如何轉啊
作者: johnpage (johnpage)   2014-11-13 06:02:00
ASCII
作者: penril0326   2014-11-13 06:26:00
我剛剛才發過文,atoi那篇你可以參考看看
作者: ting301 ( )   2014-11-13 07:50:00
謝些 我會了

Links booklink

Contact Us: admin [ a t ] ucptt.com