【C语】输出一个整数的每一位。

#define _CRT_SECURE_NO_WARNINGS
#include
#include
int main()
  {
   int i = 0;
   int j = 0;
   int count = 0;
   int temp[20] = { 0 };
      for(i = 1470; i; i /= 10)
   {
    temp[count] = i % 10;
    count++;
   }
   for (j = count-1;j>=0; j--)
   {
    printf("%d", temp[j]);
   }
   system("pause");
   return 0;
  }

你可能感兴趣的:(【C语】输出一个整数的每一位。)