首页 > 代码库 > Accelerated C++学习笔记1—<开始学习C++>
Accelerated C++学习笔记1—<开始学习C++>
第0章 开始学习C++
1、每次学习一个新的语言,大家都是从Hello, world!开始
// lesson0_1.cpp : 定义控制台应用程序的入口点。 //功能:编译并运行Hello,world //时间:2014.5.7 #include "stdafx.h" #include "iostream" using namespace std; int _tmain(int argc, _TCHAR* argv[]) { std::cout<< "Hello,world" <<std::endl; return 0; }
实验结果:
2、编写一个程序,编写一个程序,使它运行时输出 This (*) is a quote, and this (\) is a blacklash.
// lesson0_2.cpp : 定义控制台应用程序的入口点。 //功能:编写一个程序,使它运行时输出 This (*) is a quote, and this (\) is a blacklash. //时间:2014.5.7 #include "stdafx.h" #include "iostream" using namespace std; int _tmain(int argc, _TCHAR* argv[]) { std::cout<< "This (*) is a quote, and this (\\) is a blacklash."<<std::endl; return 0; }
实验结果:
注意事项:这里的 \ 编代码时候要写成\\ 否则显示的只有空格。
3、一个最短的有效程序
int main () { }
4、重写Hello,world! 让程序中每一个允许出现空白符的地方都换行
// lesson0_3.cpp : 定义控制台应用程序的入口点。 //功能:重写Hello,world! 让程序中每一个允许出现空白符的地方都换行 //时间:2014.5.7 #include "stdafx.h" #include "iostream" using namespace std; int _tmain(int argc, _TCHAR* argv[]) { std :: cout << "Hello,World!" << std :: endl ; return 0 ; }
总结:本节主要就是让了解下怎么编写C++的第一个程序Hello,world!从来来了解如何建立C++的一个环境。
我的软件平台是Microsoft Visual Studio 2008破解版。如果大家需要软件资源可以找我要。
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。