标题:为什么最后乱码
只看楼主
nan1888
Rank: 2
等 级:论坛游民
帖 子:44
专家分:86
注 册:2011-6-19
结帖率:85.71%
 问题点数:0 回复次数:0 
为什么最后乱码
#include<iostream>
using namespace std;
template<typename T>
class arry
{public:
arry(int s)
{if(s>1)
size=s;
else
size=1;
b=new T[size];}


~arry()
{delete [] b;}
T& entry(int a)
{return b[a];}
void set()
{int i;
for (i=0;i<size;i++)
{cout<<"请输入"<<endl;
cin>>b[i];}
}
void sum()
{int j;
for (j=0;j<size;j++)
c+=b[j];
cout<<"和"<<c<<endl;}
double average()
{return c/size;}

int c;

int size;
T *b;
};
int main()
{int a;
    cout<<"输入要的个数"<<endl;
    cin>>a;
arry<int> intarry(a);
intarry.set();
intarry.sum();
cout<<intarry.average()<<endl;
return 0;}
搜索更多相关主题的帖子: average include public double return 
2011-06-30 20:16



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-344417-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.103378 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved