PAT Basic 1017. A除以B (20)(C语言实现)

我的PAT系列文章更新重心已移至Github,欢迎来看PAT题解的小伙伴请到Github Pages浏览最新内容。此处文章目前已更新至与Github Pages同步。欢迎star我的repo。

题目

本题要求计算 ,其中 是不超过 1000 位的正整数, 是 1 位正整数。你需要输出商数 和余数 ,使得 成立。

输入格式:

输入在一行中依次给出 和 ,中间以 1 空格分隔。

输出格式:

在一行中依次输出 和 ,中间以 1 空格分隔。

输入样例:

123456789050987654321 7

输出样例:

17636684150141093474 3

思路

就是模拟一个手算除法的过程。

代码

最新代码@github,欢迎交流

#include 

/* read 2 digits from highest digit of A, do manual division, get the quotient
 and remainder. Read one more digit, combine this with the last remainder to
get a new 2-digits number. Do this until read to the end of A */

int main()
{
    int B;
    char A[1001], *p = A;
    scanf("%s %d", A, &B);

    /* the results are stored in A and B instead of printed out on-the-fly */
    int twodigit, remainder = 0;
    for(int i = 0; A[i]; i ++)
    {
        twodigit = remainder * 10 + (A[i] - '0');
        A[i] = twodigit / B + '0';
        remainder = twodigit % B;
    }
    B = remainder;

    /* print */
    if(A[0] == '0' && A[1] != '\0') p++;
    printf("%s %d", p, B);

    return 0;
}

你可能感兴趣的:(PAT Basic 1017. A除以B (20)(C语言实现))