摘要:
#include "stdafx.h"#include <stdio.h>int A2i(char *p){ int i = 0; int sum = 0; while (p[i]) { sum = sum*10+(p[i]-'0'); ++i; } return sum;}char *Itoa( int value, char *str, int radix ){ char temp[20]={0}; int i = 0; ... 阅读全文
posted @ 2012-08-30 22:38
无名使者
阅读(155)
评论(0)
推荐(0)
2012年8月30日