为什么我的程序会崩溃(C ++)?

时间:2013-10-31 22:38:27

标签: c++

我不明白为什么在Visual Studio 2012中无法正常运行

#include <iostream>
#include <cstring>
#include <cstdlib>
using namespace std;

char nullChar()
{
    char ch;

    int ran = (rand() % 52);

    if (ran < 26) 
        {
            ch = (char) ('a'+ ran);
        } 
    else 
        {
            ch = (char) ('A'+ ran - 26);
        }

    return ch;
}

int main(int argc, char *argv[]) 
{ 
    cout << "Enter a string";

    int nullNum = 0;
    nullNum = atoi(argv[2]);

    if (strcmp(argv[1], "-d") == 0)
        {
            int count = -1;

            do
                {
                    int c = cin.get();
                    count++;

                    if(count == nullNum)
                        {
                            cout.put(c);
                            count = -1;
                        }

                } while (!cin.eof()) ;
        }

    if(strcmp(argv[1], "-e") == 0)
        {
            char c = cin.get();

            while(!cin.eof())
                {
                    for (int i = -1; i < (nullNum-1); ++i)
                        {
                            cout << nullChar();
                        }

                    cout << c;
                    c = cin.get();
                }
        }


} 

代码编译完美。我怀疑循环中的某些东西,但我无法弄明白。我也认为它几天前完美运行但现在不是。那可能吗?

1 个答案:

答案 0 :(得分:2)

我不确定你是否通过参数。但除此之外,你应该在使用argv [xyz]之前检查argc。我的猜测是你得到一个段错误,因为没有argv [1]和argv [2]