-
问题
使用 VS Code 编写 C++ 程序时出现控制台不能输入的情况,代码如下:
#include<iostream>
using namespace std;
int main(){
int a;
cin>>a;
cout<<a<<endl;
return 0;
}
控制台提示 Cannot edit in read-only editor
。
-
解决
我使用的是 Code Runner 扩展,设置里面 Run In Terminal
打勾就好了,步骤和图示如下:
File -> Preferences ->Setting -> Extensions -> Run Code configuration -> Run In Terminal
这样就能正常输入了。
原文地址:https://www.cnblogs.com/aczarwang/p/12412029.html
时间: 2024-11-13 09:35:57