安妮 发表于 2018-12-27 21:09:00

C++runtime error assertion的错误

用C++写的一个练习题的程序
题目要求:读入一组整数并把它们存入一个vector对象,将每对相邻整数的和输出出来。
答案给的程序如下:
#include <iostream>
#include <vector>

using namespace std;

int main()
{
        vector<int> vInt;
        int iVal;
        cout << "请输入一组数字:" << endl;
        while (cin >> iVal)
                vInt.push_back(iVal);
        if (vInt.size() == 0)
        {
                cout << "没有任何元素" << endl;
                return -1;
        }
        cout << "相邻两项的和依次是:" << endl;
        for (decltype(vInt.size()) i = 0; i < vInt.size() - 1; i += 2)
        {
                cout << vInt + vInt << " ";
                if ((i + 2) % 10 == 0)
                        cout << endl;
        }
        if (vInt.size() % 2 != 0)
                cout << vInt;

        return 0;
}
问题:上述程序运行后,没有error。第一次运行时出现runtime error.Assertion类似的错误,在“请输入一组数字后”就不再往下运行。
调试发现:
“Project1.exe”(Win32): 已加载“C:\Windows\SysWOW64\ucrtbased.dll”。无法查找或打开 PDB 文件。
“Project1.exe”(Win32): 已加载“C:\Windows\SysWOW64\tmumh\20019\AddOn\7.30.0.1099\TmUmEvt.dll”。无法查找或打开 PDB 文件。
“Project1.exe”(Win32): 已加载“C:\Windows\SysWOW64\tmumh\20019\TmMon\2.6.0.2031\tmmon.dll”。无法查找或打开 PDB 文件。

Mountain_gs 发表于 2018-12-28 09:02:41

while (cin >> iVal)
                vInt.push_back(iVal);
死循环了吧。
页: [1]
查看完整版本: C++runtime error assertion的错误