立方体の体積のinline関数を計算します

295 ワード

#include
using std::cin;
using std::cout;
using std::endl;
inline double cube(const double side)
{return side*side*side;
}
int main()
{double sideValue;
 cout<>sideValue;
 cout<

結果:enter the side length:3.5
      the cube is 42.875