我正在通过一本书学习C++.它告诉我键入这个编译并链接它,以便我看看我是否可以阅读它.但是当我运行它时会出现错误.有什么问题?
#include <iostream>
int main()
{
int x = 8;
int y = 6;
std::cout << std::end1;
std::cout << x - y << " " << x * y << " " << x + y;
std::cout << std::end1; return 0;
}
Run Code Online (Sandbox Code Playgroud)