C programming solution to split the number into digits. ... till num greater than 0 { int mod = num % 10; //split last digit from number printf("%d\n",mod); ...
確定! 回上一頁