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