我在Vscode里写了两个程序
正常的,可以运行:
#include<cstdio>
int main(){
int a,b;
scanf("%d%d",&a,&b);
printf("%d",a+b);
return 0;
}
寄(能编译不能运行):
#include<iostream>
using namespace std;
int main(){
int a,b;
cin>>a>>b;
cout<<a+b;
return 0;
}
窗口输出[出现错误 2147942632 (0x800700e8)
怎么办