摘要:
/*ID: aznfy1PROG: dualpalLANG: C++*/#include<stdio.h>#include<string.h>#include<iostream>using namespace std;int num[500];int len;void change(int x,int b){ int i=0; while(x!=0) { num[i]=x%b; x=x/b; i++; } len=i;}int judge(){ for(int i=0;i<len/2;i++) { ... 阅读全文
posted @ 2013-05-18 15:21
Fray
阅读(146)
评论(0)
推荐(0)