第四周课堂测试

Posted 希境流年

tags:

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

源代码:

#include<iostream>
using namespace std;
int Largest(int list[],int length)
{
    int i,max;
    max=list[0];
    for(i=1;i<length;i++){
        if(list[i]>max){
            max=list[i];
        }
    }
    return max;
}
void main()
{
    int length,i,max;
    cout<<"请输入需要比较的数字个数:"<<endl;
    try
    {
    cin>>length;
    if(length==0||length<0)//定义异常
    {
        throw length;//抛出异常
    }
    }
    catch(int length)//声明异常
    {
        cout<<"输入错误!"<<endl;
        exit(1);//异常退出程序
    }
    int *list=new int[length];
    cout<<"请分别输入需要比较的数字:"<<endl;
    for(i=0;i<length;i++)
    {
        cin>>list[i];
    }
    max=Largest(list,length);
    cout<<"最大值为:"<<max<<endl;
}

 

以上是关于第四周课堂测试的主要内容,如果未能解决你的问题,请参考以下文章

20165326 第四周课堂测试

第四周课堂测试

第四周课堂测试补做

第四周查漏补缺

20165232 第四周课后作业

第四周 项目中的白盒测试