shape.h

来自「计算并输出下述各种算法在不同内存容量下的命中率大整数大整数大整数」· C头文件 代码 · 共 25 行

H
25
字号
#include <iostream>
using namespace std;

class Shape {
public:
   double area();
   double girth();
   void show();
};

double Shape::area()
{
	return 0;
}

double Shape::girth()
{
	return 0;
}

void Shape::show()
{
	cout<<"Shape Object:"<<endl;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?