当前位置:编程学习 > C/C++ >>

第七周项目:阅读程序改错

[cpp]
/*  
* 程序的版权和版本声明部分  
* Copyright (c)2012, 烟台大学计算机学院学生  
* All rightsreserved.  
* 文件名称: fun.cpp  
* 作 者:李蒙 
* 完成日期:2013 年 4月 12日  
* 版本号: v1.0  
* 对任务及求解方法的描述部分:  
* 输入描述:略  
* 问题描述:略  
* 程序输出:如下  
*/  
/*
原代码
*/ 
 
#include <iostream>  
#include <string>  
using namespace std; 
class Box 

 public: 
 Box(int h,int w,int l):height(h),width(w),length(l){} 
 int volume( ){return height*width*length;}; 
 private: 
 static int height;  //静态的数据成员  
 int width; 
 int length; 
}; 
int main() 

    Box b(2,3,4); 
    cout<<"volume is "<<b.volume()<<endl; 
    return 0; 

/*
修正后
*/    
#include <iostream>  
using namespace std; 
class Box 

 public: 
 Box(int w,int l):width(w),length(l){} 
 int volume( ){return height*width*length;}; 
 private: 
 static int height;  //静态的数据成员  
 int width; 
 int length; 
}; 
int Box::height=2;     //对静态数据成员height初始化  
int main() 

    Box b(3,4); 
    cout<<"volume is "<<b.volume()<<endl; 
    return 0; 

/* 
* 程序的版权和版本声明部分 
* Copyright (c)2012, 烟台大学计算机学院学生 
* All rightsreserved. 
* 文件名称: fun.cpp 
* 作 者:李蒙
* 完成日期:2013 年 4月 12日 
* 版本号: v1.0 
* 对任务及求解方法的描述部分: 
* 输入描述:略 
* 问题描述:略 
* 程序输出:如下 
*/
/*
原代码
*/

#include <iostream>
#include <string>
using namespace std;
class Box
{
 public:
 Box(int h,int w,int l):height(h),width(w),length(l){}
 int volume( ){return height*width*length;};
 private:
 static int height;  //静态的数据成员
 int width;
 int length;
};
int main()
{
    Box b(2,3,4);
    cout<<"volume is "<<b.volume()<<endl;
    return 0;
}
/*
修正后
*/  
#include <iostream>
using namespace std;
class Box
{
 public:
 Box(int w,int l):width(w),length(l){}
 int volume( ){return height*width*length;};
 private:
 static int height;  //静态的数据成员
 int width;
 int length;
};
int Box::height=2;     //对静态数据成员height初始化
int main()
{
    Box b(3,4);
    cout<<"volume is "<<b.volume()<<endl;
    return 0;
}

输出结果:

 

\
补充:软件开发 , C++ ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,