輸出0-1000之內迴文數

其實寫了判斷一個數是不是迴文數的函數 我的代碼 #include <stdio.h> int compare(int n) { int total=0; int a=0; while(n>0) { a=n%10; n=n/10; total=total*10+a; }
相關文章
相關標籤/搜索