题解 | #设计立方体类#

设计立方体类

https://www.nowcoder.com/practice/0f02d35dcd564f0a87865d604eccbe18

#include<iostream>

template<typename T>
class Cube
{
public:

    T getArea(T length, T width, T height)
    {
        std::cout << length << " " << width << " " << height << " " ;
        auto it =  2 * (length * width + length * height + width * height);
        return it;
    }

    T getVolume( T length, T width, T height)
    {
        //std::cout << length << " " << width << " " << height << " " << std::endl;
        auto it =  length * width * height;
        return it;
    }

};

int main(void)
{
    Cube<int> get;
    int a, b, c;
    std::cin >> a;
    std::cin >> b;
    std::cin >> c;

    std::cout << get.getArea(a, b, c) << " " << get.getVolume(a, b, c) << std::endl;

    return 0;
}
全部评论

相关推荐

04-11 23:51
门头沟学院 Java
坚定的芭乐反对画饼_许愿Offer版:人人都能过要面试干嘛,发个美团问卷填一下,明天来上班不就好了
点赞 评论 收藏
分享
ResourceUtilization:你是我见过最美的牛客女孩
点赞 评论 收藏
分享
评论
2
1
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务