我正在用 C++ 编写代码,它的编译非常完美,但由于某种原因,它并没有超出特定的行。我已经检查并重新检查了所有括号。我无法弄清楚为什么会发生这种情况,因为编译器也没有给我任何错误或警告。我没有包含整个代码,如果需要更多代码,请告诉我。
int main()
{
//declaration of all the required variable used below
for(int g=0;g<e;g++)
{
//some code here
}
for(int i=0;i<e;i++)
{
//some code here
}
for(int k=1;k<v;k++)
{
//some code here
}
cout<<"\n";
cout<<"reaching here
for(int k=0;k<v;k++)
{
//some code here
}
cout<<"\n"; //printing a next line
cout<<"not printing this line";
return 0;
}