热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

第5周实验报告3(修改版)

#include<iostream>usingnamespacestd;classLong{public:Lon
#include       
using namespace std;    
class Long    
{    
public:    
    Long();   
    Long(float x,float y,float z):length(x),width(y),heigth(z){};  
    void show();    
    void getvalue();    
private:    
    float length;    
    float width;    
    float heigth;    
    float volume ;    
    float surface ;    
};    
int main()    
{    
    int i;    
    Long L[5]={Long(12,10,15),Long(13,14,15),Long(7,8,9)};//前边必须要声明带参数的构造函数才行,否则在这里对数组元素直接初始化将会出错。   
    L[4].getvalue();  
    for(i=0;i<5;i++)  
    {  
        L[i].show();  
    }  
    return 0;    
}  
  
  
Long::Long()   
{   
    heigth=10;   
    width=10;   
    length=10;   
}   
  
void Long::show()    
{    
    cout<<"三边为:"<>x;   
    cin>>y;  
    cin>>z;  
    length=x;    
    width=y;    
    heigth=z;  
}  

 

这是修订版的 听完课修订的。


推荐阅读
author-avatar
水平蓝精灵天堂_678
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有