美文网首页python学习笔记
python练手_81-求未知数

python练手_81-求未知数

作者: 学子CH | 来源:发表于2019-02-18 11:00 被阅读0次
    # -*- coding:utf-8 -*-
    # @Author: CH
    """
    @project: python study
    @time:2019/1/9-19:53
    @file_name:【程序81】求未知数.py
    @IDE:PyCharm 
    @else: DO NOT STOP STUDYING!!!
    """
    # 题目 809*??=800*??+9*?? 其中??代表的两位数, 809*??为四位数,8*??的结果为两位数,9*??的结果为3位数。求??代表的两位数,及809*??后的结果。
    # 程序分析 无。
    a = 809
    for i in range(10,100):
        b = i * a
        if b >= 1000 and b <= 10000 and 8 * i < 100 and 9 * i >= 100:
            print(b,' = 800 * ', i, ' + 9 * ', i)
    
    
    for i in range(10,100):
        if 8*i>99 or 9*i<100:
            continue
        if 809*i==800*i+9*i:
            print(i)
            break
    
    

    相关文章

      网友评论

        本文标题:python练手_81-求未知数

        本文链接:https://www.haomeiwen.com/subject/xxzmeqtx.html