码迷,mamicode.com
首页 > 其他好文 > 详细

TOJ1301: 统计同成绩学生人数

时间:2017-07-22 21:00:17      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:class   gif   block   open   play   display   崩溃   ios   closed   

技术分享
#include<iostream>
using namespace std;

int main()
{
    int N;
    int a[1000];
    int score;
    while (cin >> N,N!=0)
    {
        int num = 0;
        for (int i = 0;i < N;++i)
        {
            cin >> a[i];
        }
        cin >> score;
        for (int j = 0;j < N;++j)
        {
            if (a[j] == score)
                num++;
        }
        cout << num << endl;
    }
    return 0;
}
View Code

runtime  error (运行时错误)就是程序运行到一半,程序就崩溃了。

比如说:

①除以零

②数组越界:int a[3]; a[10000000]=10;数组开的比较小,可是输入却比较大,就会runtime error

③指针越界:int * p; p=(int *)malloc(5 * sizeof(int)); *(p+1000000)=10;

④使用已经释放的空间:int * p; p=(int *)malloc(5 * sizeof(int));free(p); *p=10;

⑤数组开得太大,超出了栈的范围,造成栈溢出:int a[100000000];

TOJ1301: 统计同成绩学生人数

标签:class   gif   block   open   play   display   崩溃   ios   closed   

原文地址:http://www.cnblogs.com/hansichen/p/7222268.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!