您的位置:首页 > 编程语言 > C语言/C++

8.C++ 程序的基本结构

2013-11-18 09:43 399 查看
#include <iostream>

class RectArea //声明一个名为 RectArea 的类
{
private:  //私有类型数据成员
int Length,Width;
public:   //共有类型函数成员
void input(int a, int b)
{
Length= a;
Width=b;
}

void output()
{
int Square=Length *Width;
std::cout<<Square<<std::endl;//输出Square 的值并换行
}

}; //";"为类声明结束标志

void show()//普通函数
{
std::cout<<"The area is :"<<std::endl;
}

int main(int argc, const char * argv[]) //主函数
{
RectArea myRect;//声明RectArea 类对象
int a,b;
std::cout<<"请输入Rect 的 宽、高"<<std::endl;
std::cin>>a>>b;

show();//调用函数
myRect.input(a, b);
myRect.output();

return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: