摘要:
一、设计思路 第三版程序在第二版上增加了用户填写答案和自动批改答案功能,并且还能显示一共答对了多少题。 二、程序源代码#include #include #include #include using namespace std;void Display1(int,int,int,int,in... 阅读全文
摘要:
题目:返回一个整数数组中最大子数组要求:输入一个整形数组,数组里有整数也有负数;数组中连续的一个或多个整数组成一个整数组每个子数组都有一个和;求所有子数组的和的最大值,要求时间复杂度为O(n)。思路:设数组为a[10],从第一个数啊a[1]开始,设置两个变量,一个记录和,一个记录最大值,如果和大于最... 阅读全文
摘要:
一、测试方法6个值得测试的具体部位:Right-结果是否正确?B-是否所有的边界条件都是正确的?I-能查一下反向关联吗?C-能用其他手段交叉检查一下结果吗?E-你是否可以强制错误条件发生?P-是否满足性能要求?二、测试部分case 3: if(c[5] == 1) ... 阅读全文
摘要:
程序代码;#include #include #include #include using namespace std;void Display1(int,int,int);void Display2(int [],int,int,int);int main(){ int a = 0; ... 阅读全文
摘要:
源代码:#include #include #include #include int main(){ int a = 0; int b = 0; int mode = 0;//0:加 1:减 2:乘 3:除 int i = 0; int c[5]={0,30... 阅读全文
摘要:
程序开始提示用户输入,用户输入自己的要求,存储到定义的数据中,然后根据用户要求,选择是否有乘除,括号,数据范围等等,四则运算用函数实现进行调用,对用户的要求进行判断,按照要求输出结果 阅读全文
摘要:
设计思想:出三十道一百以内数的随机四则运算题目,先随机两个一百以内的数字,再通过随机数确定四则运算算符,最后通过for循环输出三十道源代码程序:#include #include #include #include int main(){ int a = 0; int b = 0; ... 阅读全文