My Blog

Thoughts, tutorials, and insights on technology and development

分割数字 2.0

#include <stdio.h> int main () {   int x;   printf("请输入一个正整数:");   scanf("%d",&x);   int mask = 1;   int t = x; &n...
Read More

分割数字

#include <stdio.h> int main() {  int x;  printf("请输入一个正整数:");  scanf("%d",&x);  int t = 0;  do {   int d = x % 10;   t...
Read More