2021年5月31日

摘要: # -*- coding:utf-8 -*- __author__ = 'zhengbiqing 460356155@qq.com' __doc__ = """口算程序 2017-05-31""" from random import randint sym = [' + ', ' - '] # 当 阅读全文
posted @ 2021-05-31 22:07 计应191(西)第六组 阅读(54) 评论(0) 推荐(0)
 
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u 阅读全文
posted @ 2021-05-31 21:58 计应191(西)第六组 阅读(53) 评论(0) 推荐(0)
 
摘要: if __name__ == '__main__': import random for i in range(0,10): s = "" for i in range(0, 3): type = random.randint(1, 4) if type == 1: a = random.randi 阅读全文
posted @ 2021-05-31 20:59 计应191(西)第六组 阅读(40) 评论(0) 推荐(0)
 
摘要: 创建小学生口算题目文件math.txtfobj = open('math.txt', 'w')defbase_exei_oneline(pmin, pmax, mmin, mmax, multimin, multimax, divmin, divmax):'''pmin,pmax:加数、被加数最小最 阅读全文
posted @ 2021-05-31 20:54 计应191(西)第六组 阅读(59) 评论(0) 推荐(0)
 
摘要: 一、计划 编写小学生四则运算口算题卡 二.开发 1.需求分析 作为一名一年级小学生的家长,我希望开发口算题卡软件,让我的孩子学习,能自己产生随机产生100以正整数加减乘除法,以便减轻我的工作负担。 2.生成设计文档 3.设计复审 4.代码规范 注意大小写、缩进、括号及分行。 5.具体设计 系统开始, 阅读全文
posted @ 2021-05-31 19:51 计应191(西)第六组 阅读(64) 评论(0) 推荐(0)