1061: 顺序输出各位数字

1061: 顺序输出各位数字

Time Limit: 1 Sec   Memory Limit: 30 MB
Submit: 9950   Solved: 5766

Submit Status Web Board

Description

 输入一个不大于10的9次方的正整数,从高位开始逐位分割并输出各位数字。 

Input

 输入一个正整数n,n是int型数据 

Output

 依次输出各位上的数字,每一个数字后面有一个空格,输出占一行。例如,输入 12345 ,输出 1 2 3 4 5 

Sample Input

12345

Sample Output

1 2 3 4 5

HINT

注意整数运算避免使用double类型的函数如pow()。


本题可先用一个循环计算出最高位的位权h,然后再用一个循环,循环内容为: 输出最高位(n/h)、扔掉最高位(n = n%h)、降低最高位位权(h =  h/10),直到位权h为0。

Source

**

#include

int main()
{
    int n,s,a;
    scanf("%d",&n);
    s=n;
    a=1;
    while(s>9)
    {
        s/=10;
        a*=10;
    }
    while(a>0)
    {
        printf("%d ",n/a);
        n%=a;
        a/=10;
    }
    printf("\n");
    return 0;
}



你可能感兴趣的:(ZZULI-OJ)