目前共有2篇帖子。 內容轉換:不轉換▼
 
點擊 回復
373 1
【试题】颠倒的价牌
一派護法 十九級
1樓 發表于:2016-3-19 13:17
#include <stdio.h>

bool invert_digit(int *n)
{
    switch (*n)
    {
    case 0:
    case 1:
    case 2:
    case 5:
    case 8:
        break;
    case 6:
        *n = 9;
        break;
    case 9:
        *n = 6;
        break;
    default:
        return false;
    }
    return true;
}

bool invert(int n, int *r)
{
    int a[4], i;
    *r = 0;
    a[0] = n / 1000;
    a[1] = n % 1000 / 100;
    a[2] = n % 100 / 10;
    a[3] = n % 10;
    if (a[3] == 0)
        return false;
    for (i = 3; i >= 0; i--)
    {
        if (!invert_digit(a + i))
            return false;
        *r = *r * 10 + a[i];
    }
    return true;
}

int main(void)
{
    int a, b;
    int c, d;
    int e, f;
    for (a = 1000; a <= 9999; a++)
    {
        if (!invert(a, &c))
            continue;
        for (b = 1000; b <= 9999; b++)
        {
            if (!invert(b, &d))
                continue;
            e = c - a;
            f = b - d;
            if (e + f == 558)
            {
                if ((e >= 800 && e < 900 && f > -300 && f <= -200) || (f >= 800 && f < 900 && e > -300 && e <= -200))
                {
                    printf("%d => %d (%d), %d => %d (%d): %d\n", a, c, e, b, d, f, e + f);
                }
            }
        }
    }
    return 0;
}
一派護法 十九級
2樓 發表于:2016-3-19 13:18
输出:
1061 => 1901 (840), 8806 => 9088 (-282): 558
2062 => 2902 (840), 8806 => 9088 (-282): 558
5065 => 5905 (840), 8806 => 9088 (-282): 558
6069 => 6909 (840), 8806 => 9088 (-282): 558
8068 => 8908 (840), 8806 => 9088 (-282): 558
9066 => 9906 (840), 8806 => 9088 (-282): 558
9088 => 8806 (-282), 1901 => 1061 (840): 558
9088 => 8806 (-282), 2902 => 2062 (840): 558
9088 => 8806 (-282), 5905 => 5065 (840): 558
9088 => 8806 (-282), 6909 => 6069 (840): 558
9088 => 8806 (-282), 8908 => 8068 (840): 558
9088 => 8806 (-282), 9906 => 9066 (840): 558
Press any key to continue . . .

因此,赔钱的那个价牌正确的价格应该是9088元。

回復帖子

內容:
用戶名: 您目前是匿名發表
驗證碼:
(快捷鍵:Ctrl+Enter)
 

本帖信息

點擊數:373 回複數:1
評論數: ?
作者:巨大八爪鱼
最後回復:巨大八爪鱼
最後回復時間:2016-3-19 13:18
 
©2010-2024 Arslanbar Ver2.0
除非另有聲明,本站採用創用CC姓名標示-相同方式分享 3.0 Unported許可協議進行許可。