初学c++,为什么这个代码运行不了。std为什么不会变成绿色??
发布网友
发布时间:2022-05-20 19:55
我来回答
共1个回答
热心网友
时间:2023-11-19 11:52
//以下代码在 MS VS2013 下正常编译运行,
//如果你的编译环境中不能正常运行,那应该不是代码的问题,
//请查核你的编程环境是否正常安装。
//个人建议 新手学C++编程 使用VS2013。
#include<iostream>
using namespace std;
int main()
{
int x, y;
cin >> x;
cin >> y;
cout << x + y << endl;
cout << x*y << endl;
system("pause"); //用于暂停以查看,在windows及dos下有效。
return 0;
}