摘要:
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 阅读全文
摘要:
namespace 四则运算{ class Program { static void Main(string[] args)//在主函数中,通过键盘输入两个数x,y。并对四个函数进行调用。 { int x; int y; Console.Write("请输入第一个数"); x = Convert. 阅读全文
摘要:
using system;using system.collections.generic;using system.linq;using system.text;using system.threading.tasks; namespace consoleapplication3{ class p 阅读全文
摘要:
using system;using system.collections.generic;using system.linq;using system.text;using system.threading.tasks;namespace consoleapplication3{ class pr 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Text;using System.Text.RegularExpressions;namespace ConsoleApplication1{class Class1{privat 阅读全文
摘要:
计划:用c#开发一款小学口算题卡程序 需求: 作为一名1年级小学生的家长,我希望开发出一个口算题卡软件,希望能生成100以内的加减法。 分析要实现的功能:自动出题、随机生成100以内的加减法、判断对错、判断做题的正确率 项目实现的代码如下: using System;using System.Col 阅读全文
摘要:
1, 计划 为一年级小学生设计口算题卡 2, 需求分析 2.1,用户故事 作为一个一年级小学生的家长,我希望制作一个出题软件,完成100以内的正整数的加减法题随机产生,一边减轻我的负担 2.2 技术难点 随机产生100以内的正整数 随机产生加减符号 减法负值的剔除 任务一 随机产生一组(10个)算题 阅读全文