最后一个cin.get不执行。可能是什么问题呢? 这是代码:
#include <iostream>
using namespace std;
int main()
{
int a;
a = 4;
int b = 8;
int c = a + b;
cout << "a + b = " << c << endl;
cin.get();
double d = 14.5;
char e = 'f';
cout << d << " " << e << endl;
cin.get();
int c1 = 3;
int c2 = 5;
cout << (double)c1 / (double)c2 << endl;
cin.get();
int d1, d2;
cout << "Enter d1: ";
cin >> d1;
cout << "Enter d2: ";
cin >> d2;
cout << "d1 = " << d1 << ", d2 = " << d2 << endl;
cin.get();
return 0;
}
我在Visual Studio中编译。 程序显示最后一行,然后退出。 请帮帮我!