1. 程式人生 > >c++函式過載

c++函式過載


任務描述:

    用同一函式名,分別計算圓、矩形、梯形面積的函式,在編寫函式過程中要求使用函式過載,並在main函式中完成呼叫。

一、實驗目的和要求

1、熟悉C++中對函式定義的擴充。

2、瞭解多檔案執行程式的方法。

3、初步熟悉VC++開發平臺。

二、專案擬實現的主要原始碼

1、圓形

float area(float a)

{

float s;

s = a*a*PI;

return s;

}

2、矩形

float area(float a, float b)

{

float s;

s = a*b;

return s;

}

3、梯形

float area(float a, float b, float c)

{

float s;

s = (a + b)*c / 2;

return s;

}