Description
输入一个正整数 repeat (0<’repeat<10),做repeat 次下列运算:
输入一个整数,从高位开始逐位输出它的各位数字。
Input
输入的整数可能大于1030
Output
见sample
Sample Input
3
123456
-600
8
Sample Output
1 2 3 4 5 6
6 0 0
8
#include<string.h>
#include<stdio.h>
int main()
{
char s[10000];
int repeat;
scanf("%d",&repeat);
for(int aa=0;aa<r