用free c++4.0编译个入门程序出了个问题,帮忙看下
在编译器中直接编译并运行是正常的,编译也是正常的,但运行编译后的文件,在应该出现结果时就直接跳出了,没出现结果,下面是源码,请高手帮忙分析一下
#include <iostream>
using std::cin;
using std::cout;
using std::endl;
int main()
{
cout<<"输入两个正整数数比较它们的大小"
<<endl;
int first = 0;
int second = 0;
cout<<"输入第一个正整数"
<<endl;
cin>>first;
cout<<"输入第二个正整数"
<<endl;
cin>>second;
if (first < second)
{
cout<<"第一个数比第二个数小"
<<endl;
}
else
{
cout<<"第一个数比第二个数大"
<<endl;
}
return 0;
}