编程语言
首页 > 编程语言> > 《C++ Primer Plus》第六版笔记

《C++ Primer Plus》第六版笔记

作者:互联网

之前学过一段,现在总结,并且往后学。

第七章  函数——C++的编程模块

7.1函数的基本知识,书中复习

#include<iostream>

void fun(int a);

void fun(int abc)

{代码块;}

// 使用原型和函数调用
#include <iostream>
void cheers(int);       // 原型:没有返回值
double cube(double x);  // Prototype:返回一个double值
int main()
{
    using namespace std;
   
    cheers(cube(125));

    return 0;
}

void cheers(int n)
{
    using namespace std;
        cout << "n  =  "  << n << endl;
}

double cube(double x)
{
    return x * x * x; 
}

运行结果

n  =  1953125

7.2函数参数和按值传递

 

标签:cheers,cube,int,double,void,第六版,Plus,原型,Primer
来源: https://www.cnblogs.com/xiazi/p/15100215.html