小学四则运算

Posted marryj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小学四则运算相关的知识,希望对你有一定的参考价值。

 

技术图片

 

 

代码如下:

import random
#四则运算

def t():
    sym = [‘+‘, ‘-‘, ‘ב, ‘÷‘]
    f= random.randint(0, 3)
    n1 = random.randint(1, 20)
    n2 = random.randint(1, 20)
    result = 0
    if f== 0:#加法
        result  = n1 + n2
    elif f == 1:#减法,要先比较大小,防止输出负数
        n1, n2 = max(n1, n2), min(n1, n2)
        result  = n1 - n2
    elif f== 2:#乘法
        result  = n1 * n2
    elif f == 3:#除法,要比较大小,并循环取整除
        n1, n2 = max(n1, n2), min(n1, n2)
        while n1 % n2 != 0:
            n1 = random.randint(1, 10)
            n2 = random.randint(1, 10)
            n1, n2 = max(n1, n2), min(n1, n2)
        result  = int(n1 / n2)
    print(n1, sym[f], n2, ‘= ‘, end=‘‘)
    return result
#制作题库
def test():

    print(‘输入所需要的题目数量‘)
    n=int(input())
    result =[]
    m=0
    while m<=(n-1):
        print(m+1,end=‘、‘)
        result .append(t())
        print(‘ ‘)
        m=m+1
    m=0
    print(‘对应的答案:‘)
    while m<=(n-1):
        print(m+1,‘、‘,result [m])
        m=m+1
print(‘选择想要的模式‘)
print(‘1、进行四则运算‘)
print(‘2、制作题库‘)
n=int(input())
#当输入666时,进行四则运算,调用函数t()
if n==666:
    while True:
        result  = t()
        j= input()
        s= int(j)
        if s== result :
            print(‘right‘)
        else:
            print(‘error.,the answer is‘, result )
#当输入2333333时,进行制作题库
if n==2333333:
    test()

参考:https://www.cnblogs.com/zhouxiaochun/p/10567992.html



以上是关于小学四则运算的主要内容,如果未能解决你的问题,请参考以下文章

小学二年级四则运算题

2016012045+小学四则运算联系项目报告

201571030133/201571030102《小学四则运算练习软件软件需求说明》结对项目报告

小学四则运算

201571030120/201571030119《小学四则运算练习软件软件需求说明》结对项目报告

设计小学生四则运算测试程序,要求随机产生10题四则运算题,答完后给出得分。用C语言做,有人会吗??很急