判斷迴文數、迴文字符串(從左邊讀和從右邊讀同樣)

1.判斷一個數是否是迴文數,如:"123321" #include <stdio.h> int main() {                  int m=1234;  //m是要判斷的數                  int n=0;  //n是反轉後的數                  int ret=m;                  while(m)           
相關文章
相關標籤/搜索