码迷,mamicode.com
首页 > 编程语言 > 详细

Accelerated C++学习笔记1—<开始学习C++>

时间:2014-05-22 06:24:33      阅读:287      评论:0      收藏:0      [点我收藏+]

标签:c++   visual studio 2008   iostream   

第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;
}

实验结果:
bubuko.com,布布扣

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;
}

实验结果:

bubuko.com,布布扣
注意事项:这里的 \ 编代码时候要写成\\ 否则显示的只有空格。
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
	;
}

bubuko.com,布布扣

总结:本节主要就是让了解下怎么编写C++的第一个程序Hello,world!从来来了解如何建立C++的一个环境。
我的软件平台是Microsoft Visual Studio 2008破解版。如果大家需要软件资源可以找我要。


Accelerated C++学习笔记1—<开始学习C++>,布布扣,bubuko.com

Accelerated C++学习笔记1—<开始学习C++>

标签:c++   visual studio 2008   iostream   

原文地址:http://blog.csdn.net/to_xidianhph_youth/article/details/26259837

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!