C++第4周项目4 - 正整数类

课程首页地址:http://blog.csdn.net/sxhelijian/article/details/7910565,本周题目链接:http://blog.csdn.net/sxhelijian/article/details/8690895

【项目4 - 正整数类】设计一个“正整数”类,并通过一系列的成员函数对其性质进行做出判断或列出相关联的数值。下面给出类声明,请实现各成员函数。另外,模仿已经给出的main()函数,完成你所设计的各个成员函数的测试。如果时间有限,不必实现所有成员函数。

#include<iostream>
using namespace std;
class NaturalNumber
{private:
	int n;
public:
	void setValue (int x);//置数据成员n的值,要求判断是否是正整数
	int getValue();  //返回私有数据成员n的值
	bool isPrime();  //判断数据成员n是否为素数,是返回true,否则返回false
	void printFactor();  //输出数据成员n的所有因子,包括1和n自身
	bool isPerfect(); //判断数据成员n是否为完全数。若一个正整数n的所有小于n的因子之和等于n, 则称n为完全数, 如6=1+2+3是完全数。
	bool isReverse(int x);//判断形式参数x是否为数据成员n的逆向数(例321是123的逆向数)。
	bool isDaffodil(int x); //判断形式参数x是否是水仙花数。水仙花数的各位数字立方和等于该数,如153=1*1*1+5*5*5+3*3*3
	void printDaffodils(); //显示所有大于1,且小于数据成员n的水仙花数;
};

void main(void)
{
	NaturalNumber nn;	//定义类的一个实例(对象)
	nn.setValue (6);
	cout<<nn.getValue()<<(nn.isPrime()?”是”:”不是”)<<”素数” <<endl;

	nn.setValue (37);
	cout<<nn.getValue()<<(nn.isPrime()?”是”:”不是”)<<”素数” <<endl;

	nn.setValue (84);
	cout<<nn.getValue()<<”的因子有:”;
	printFactor();

	//随着成员函数的实现,增加代码以完成相关的测试。注意判断类的成员函数需要测试是或否两种情况……
}
//请在下面定义类中的各个成员函数

参考解答:

#include<iostream>
#include<Cmath>
using namespace std;
class NaturalNumber
{
private:
	int n;
public:
	void setValue (int x);//置数据成员n的值,要求判断是否是正整数
	int getValue();  //返回私有数据成员n的值
	bool isPrime();  //判断数据成员n是否为素数,是返回true,否则返回false
	void printFactor();  //输出数据成员n的所有因子,包括和n自身
	bool isPerfect(); //判断数据成员n是否为完全数。若一个正整数n的所有小于n的因子之和等于n, 则称n为完全数, 如=1+2+3是完全数。
	bool isReverse(int x);//判断形式参数x是否为数据成员n的逆向数(例是的逆向数)。
	bool isDaffodil(int x); //判断形式参数x是否是水仙花数。水仙花数的各位数字立方和等于该数,如=1*1*1+5*5*5+3*3*3
	void printDaffodils(); //显示所有大于,且小于数据成员n的水仙花数;
};

void main(void)
{
	NaturalNumber nn;	//定义类的一个实例(对象)
	nn.setValue (6);
	cout<<nn.getValue()<<(nn.isPrime()?"是":"不是")<<"素数" <<endl;

	nn.setValue (37);
	cout<<nn.getValue()<<(nn.isPrime()?"是":"不是")<<"素数" <<endl;

	nn.setValue (84);
	cout<<nn.getValue()<<"的因子有:";
	nn.printFactor();

	nn.setValue (29);
	cout<<nn.getValue()<<"的因子有:";
	nn.printFactor();

	nn.setValue (6);
	cout<<nn.getValue()<<(nn.isPerfect()?"是":"不是")<<"完全数" <<endl;

	nn.setValue (37);
	cout<<nn.getValue()<<(nn.isPerfect()?"是":"不是")<<"完全数" <<endl;

	nn.setValue (1237);
	int x=732;
	cout<<nn.getValue()<<" 和"<<x<<" "<<(nn.isReverse(x)?"是":"不是")<<"逆向数" <<endl;

	cout<<"所有大于,且小于数据成员"<<nn.getValue()<<" 的水仙花数有:";
	nn.printDaffodils(); 

	system("PAUSE");
}

//请在下面定义类中的各个成员函数
void NaturalNumber::setValue (int x)//置数据成员n的值,要求判断是否是正整数
{
	n=x;
}

int NaturalNumber::getValue() //返回私有数据成员n的值
{
	return n;
}

bool NaturalNumber::isPrime()//判断数据成员n是否为素数,是返回true,否则返回false
{
	bool prime=true;
	for(int i=2;i<=sqrt(double(n));i++)
	{
		if(n%i==0)
		{
			prime=false;
			break;
		}
	}
	return prime;
}

void NaturalNumber::printFactor()  //输出数据成员n的所有因子,包括和n自身
{
	for(int i=1;i<=n;i++)
		if(n%i==0) cout<<i<<' ';
	cout<<endl;
}

bool NaturalNumber::isPerfect() //判断数据成员n是否为完全数。若一个正整数n的所有小于n的因子之和等于n, 则称n为完全数, 如=1+2+3是完全数。
{
	bool perfect=false;
	int s=1;
	for(int i=2;i<n;i++)
		if(n%i==0) s=s+i;
	if(n==s) perfect=true;
	return perfect;
}

bool NaturalNumber::isReverse(int x)//判断形式参数x是否为数据成员n的逆向数(例是的逆向数)。
{
	bool reverse=false;
	int s=0;
	while(x>0)
	{
		s=s*10+x%10;
		x=x/10;
	}
	if(n==s) reverse=true;
	return reverse;
}

bool NaturalNumber::isDaffodil(int x) //判断形式参数x是否是水仙花数。水仙花数的各位数字立方和等于该数,如=1*1*1+5*5*5+3*3*3
{
	bool daffodil=false;
	int s=0,p=x;
	int m;
	while(p>0)
	{
		m=p%10;
		s=s+m*m*m;
		p=p/10;
	}
	if(x==s) daffodil=true;
	return daffodil;
}

void NaturalNumber::printDaffodils() //显示所有大于,且小于数据成员n的水仙花数;
{
	for(int i=2;i<n;++i)
		if(isDaffodil(i)) cout<<i<<" ";
	cout<<endl;
	return;
}

【项目4扩展(选做)】将项目4也用多文档的项目组织起来,体会这样做的好处。

时间: 2024-11-01 12:42:26

C++第4周项目4 - 正整数类的相关文章

C++第8周项目3 - 分数类中的运算符重载

课程首页地址:http://blog.csdn.net/sxhelijian/article/details/7910565,本周题目链接:http://blog.csdn.net/sxhelijian/article/details/8806111 [项目3-分数类中的运算符重载]实现分数类中的运算符重载,在分数类中可以完成分数的加减乘除(运算后再化简).求反.比较(6种关系)的运算.可以从第5周项目2的代码开始工作. class CFraction {private: int nume; /

C++第8周项目4 -分数类和整型数的四则运算

课程首页地址:http://blog.csdn.net/sxhelijian/article/details/7910565,本周题目链接:http://blog.csdn.net/sxhelijian/article/details/8806111 [项目4-分数类和整型数的四则运算]在项目3的基础上拓展.分数类中的对象可以和整型数进行四则运算,且运算符合交换律.例如:CFraction a(1,3),b; int i=2; 可以完成b=a+i;.同样,可以完成i+a, 45+a, a*27,

C++第7周项目3 - 友元类

课程首页地址:http://blog.csdn.net/sxhelijian/article/details/7910565,本周题目链接:http://blog.csdn.net/sxhelijian/article/details/8775137 [项目3-友元类]定义下面两个类的成员函数(为体验友元类,实际上本例并不一定是一个好的设计,将两个类的合并为一个DateTime,日期.时间都处理更好) class Date; //对Date类的提前引用声明 class Time { public

C++第4周项目2 - 三角形类2

课程首页地址:http://blog.csdn.net/sxhelijian/article/details/7910565,本周题目链接:http://blog.csdn.net/sxhelijian/article/details/8690895 [项目2 - 三角形类]程序功能同项目1,main()函数如下,请定义类Triangle,其中逻辑特别简单的set和get成员函数,可以处理为内置成员函数,直接在类内定义. int main() { Triangle tri1; //定义三角形类的

C++第7周项目5 - 模板类中使用友元函数

课程首页地址:http://blog.csdn.net/sxhelijian/article/details/7910565,本周题目链接:http://blog.csdn.net/sxhelijian/article/details/8775137 [项目5-模板类中使用友元函数]友元函数提供了一种非成员函数访问私有数据成员的途径,模板类使类中的数据成员的类型变得灵活,这两种技术可以结合起来用.要求在项目4的基础上能够支持用友员函数实现的加法.用于测试的main()函数如下: int main

C++第3周项目3——时间类

课程首页地址:http://blog.csdn.net/sxhelijian/article/details/7910565,本周题目链接:http://blog.csdn.net/sxhelijian/article/details/8661031 [项目3 - 时间类]阅读.运行程序后,按要求增加类的功能 /* *文件头部的注释请自行加上 */ #include <iostream> using namespace std; class Time { public: void set_ti

C++第15周项目1 -数组类

课程首页地址:http://blog.csdn.net/sxhelijian/article/details/7910565,本周题目链接:http://blog.csdn.net/sxhelijian/article/details/9018813 [项目1]建立专门的数组类处理有关数组的操作 数组是几乎所支持的组织数据的方法.C和C++对数组类型提供了内置支持,使我们利用数组实现软件中需要的各种实用的功能.但是,这种支持仅限于用来读写单个元素的机制.C++不支持数组的抽象abstractio

C++第14周项目3 -立体类族共有的抽象类

课程首页地址:http://blog.csdn.net/sxhelijian/article/details/7910565,本周题目链接:http://blog.csdn.net/sxhelijian/article/details/8987478 [项目3]设计一个抽象类CSolid,含有两个求表面积及体积的纯虚函数.设计个派生类CCube.CBall.CCylinder,分别表示正方体.球体及圆柱体.在main()函数中,定义基类的指针p(CSolid *p;),利用p指针,输出正方体.球

C++第15周项目2 -链表类

课程首页地址:http://blog.csdn.net/sxhelijian/article/details/7910565,本周题目链接:http://blog.csdn.net/sxhelijian/article/details/9018813 [项目2]建立专门的链表类处理有关动态链表的操作 动态链表也是程序设计中的一种非常有用的数据结构.可以说,是否能够理解有关操作的原理,决定了你是否有资格称为"科班"出身.在后续的专业基础课中,相关的内容还会从不同的角度,反复地认识,反复地