为什么我在第二步输入输入1的时候程序直接结束了啊
照着视频打的,怎么第二步程序直接没了,没有结果
#include <iostream>
#include <stdlib.h>
using namespace std;
int main(void)
{
cout << "请输入一个整数:" << endl;
int x = 0;
cin >> x;
cout << oct << x << endl;
cout << dec << x << endl;
cout << hex << x << endl;
cout << "请输入一个布尔值(0,1):"<<endl;
bool y = false;
cin >> y;
cout << boolalpha << y << endl;
system("pause");
return();
}