其他分享
首页 > 其他分享> > 第1章 开始

第1章 开始

作者:互联网

1.函数的定义:返回类型(return type)、函数名(function name)、形参列表(parameter,允许为空)和函数体(function body)。

2.c++程序必须包含一个main函数。main函数的返回值必须为int。

int main()
{
 return 0;
}

3.iostream库        istream: cin;ostream: coutcerrclog

4.命名空间        std::cout        std::endl

5.控制流

// while语句
while (condition) 
{
    statement
}
 
// for语句
for (init statement; condition; expression) 
{
    statement
}

// if语句
if (condition) 
{
    statement
} 
else if (condition) 
{
   statement
} 
else 
{
    statement
}

6.类简介

书店程序

#include<iostream>
using namespace std;
#include"Sales_item.h"
 
int main()
{
	Sales_item total; // 保存下一条交易记录的变量
    // 读入第一条交易记录,并确保有数据可以处理
	if (cin >> total)
	{
		Sales_item trans;    // 保存和的变量
		while (cin >> trans)
		{
            // 如果我们仍在处理相同的书
			if (trans.isbn() == total.isbn())
			{
				total += trans;    // 更新总销售额
			}
			else
			{
                // 打印前一本书的结果
				cout << total << endl;
				total = trans;    // total现在表示下一本书的销售额
			}
		}
		cout << total << endl;    // 打印最后一本书的结果
	}
	else
	{
		cerr << "No data?!" << endl;
		return -1;
	}
	return 0;
}

标签:total,函数,开始,trans,statement,main,condition
来源: https://blog.csdn.net/qq_38359705/article/details/121111070