我刚刚开始使用VS代码编码C ++,现在每次我使用cin
请求用户输入时,都会显示命令屏幕,输入所需的变量,然后将其关闭,但是我的输出控制台不断显示代码正在运行。那是个问题吗?
我写的代码:
#include <iostream>
using namespace std;
int main()
{
int x,y;
int z = x*y;
cout<<"Please enter the first number:\n";
cin>>x;
cout<<"Please enter the second number:\n";
cin>>y;
cout<<"The area is "<<z;
return 0;
}
当我按下运行按钮时,出现命令屏幕,程序要求输入两个数字,然后屏幕消失。然后,在VS代码的输出窗口中,程序要求输入第一个数字,仅此一个数字,它就继续运行。