自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

原创 下一个语句

这个程序开始执行在main()顶部,和第一行被执行打印起始main()。在主要的第二行是一个函数调用doprint。在这一点上,main()语句执行暂停,和CPU跳doprint()。第一个(也是唯一的)在doprint打印在doprint()线。当doprint()终止,调用者(main())继续执行它离开的地方。因此,在主要的打印结束main()执行下一个语句。Functions can

2014-08-01 15:10:17 159

原创 一个表达式

一个函数是一个序列的设计做一个特定工作表。你已经知道,每个程序都必须有一个功能叫做main()。然而,大多数程序有许多功能,和他们所有的工作类似于主。Often, your program needs to interrupt what it is doing to temporarily do something else. You do this in real life all the

2014-08-01 14:58:52 180

原创 两种类型的注释

类型的评论A comment is a line (or multiple lines) of text that are inserted into the source code to explain what the code is doing. In C++ there are two kinds of comments.注释是一个线(或多线)的文本,插入到源代码解释代码是做什么的

2014-08-01 14:56:18 551

原创 最常见的类型

计算机程序是一系列指令,告诉计算机做什么。Statements and expressions语句和表达式The most common type of instruction in a program is the statement. A statement in C++ is the smallest independent unit in the language. In hu

2014-08-01 14:49:39 311

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除