gpt4 book ai didi

c++ - 如何开始学习 MinGW C++?

转载 作者:太空狗 更新时间:2023-10-29 20:46:22 25 4
gpt4 key购买 nike

<分区>

我正在使用代码块学习 C++,我想问一下您是否可以给我一些好的指导,让我了解 MinGW 和 Visual Studio C++ 之间的区别,例如 \n<<不要总是像我期望的那样行事。我是新手,只读到 Jesse Liberty 的一本旧书“21 天自学 C++”的第 2 天,程序如下所示:

#include <iostream>

using namespace std;

int main()
{
cout << "Hello there."; endln;
cout << "Here is 5: " << 5 << endl;
cout << "The manipulator endln writes a new line to the screen";
cout << "Here is a very big number:\t" << 70000;
cout << "Here is the sum of 8 and 5:\t" << 8+5;
cout << "Here is a fraction:\t\t" << (float) 5/8;
cout << "And here is a very big number:\t" << (double) 7000*7000;
cout << "Remember to replace Niklas with you name";
cout << "Hampus is a C++ programmer!";
return 0;
}

MinGW C++ 是否与 GNU C++ 相同?有官方标准吗?对于新手学习/教学的任何建议都将得到应用。我正在关注的书是“21 天自学 C++”,它是这本书的旧版本,但我可以修改第一个练习中的程序以运行,我相信我可以使用这本书,因为也许没有太多变化自 C++ 出版以来就一直在制作基础 C++(我拥有的这本书的版本可能已有 10 年历史)。

谢谢!

更新在这里得到推荐后,我买了这本书C++ Primer .

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com