摘要: class Solution {public: int reverse(int x) { // Start typing your C/C++ solution below // DO NOT write int main() function int c = x; int buffer[512]; int i = 0; x = abs(x); while(x){ int a = x%10; buffer[i++] = a; ... 阅读全文
posted @ 2013-06-01 23:58 一只会思考的猪 阅读(129) 评论(0) 推荐(0) 编辑