C++程序设计实验报告(三十七)---第四周任务三

 * 程序的版权和版本声明部分
* Copyright (c) 2012, 烟台大学计算机学院学生 
* All rights reserved.
* 文件名称:           一个“正整数”类对其性质进行做出判断或列出相关联的数值           
* 作    者:                 刘镇             
* 完成日期:   2012         年    3   月    12    日
* 版 本 号:         1.034
* 对任务及求解方法的描述部分
* 输入描述: 输入一个值
* 问题描述: 。。。。
* 程序输出: 。。。。

* 程序头部的注释结束


头文件:


#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 print_Daffodils(); //显示所有大于1,且小于数据成员n的水仙花数;
};


源文件:

 

 

#include<iostream>

#include"NaturalNumber.h"

using namespace std;

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();

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

	nn.setValue (123); 

	cout << nn.getValue() << (nn.isReverse(321)?"是":"不是") << "逆向数。" << endl;

	nn.setValue (153);

	cout << nn.getValue() << (nn.isDaffodil(153)?"是":"不是") << "水仙花数" << endl;

	nn.setValue (1000); 

	nn.print_Daffodils();

	system("PAUSE");
	
}


 


NaturalNumber.cpp:


#include<iostream>

#include<cmath>

#include"NaturalNumber.h"

using namespace std;

void NaturalNumber::setValue (int x)
{
	if(x > 0)
	{
		n = x;
	}

}

int NaturalNumber::getValue()
{
	return n;
}

bool NaturalNumber::isPrime()
{
	for(int i = 2; i <= n; ++i)
	{
		if(n % i == 0)
		{
			return false;
		}

		else
		{
			return true;
		}
	}

}

void NaturalNumber::printFactor()
{
	for(int i = 1; i <= n; ++i)
	{
		if(n % i == 0)
		{
			cout << i << " " ;
		}
		else
		{
			continue;
		}
	}
	cout << endl;
}
bool NaturalNumber::isPerfect()
{
	int sum = 0;

	for(int i = 1; i < n; ++i)
	{
		if(n % i == 0)
		{
			sum += i;
		}
		else
		{
			continue;
		}
	}

	if(sum == n)
	{
		return true;
	}
	else
	{
		return false;
	}
}

bool NaturalNumber::isReverse(int x)
{
	int a, b, c;

	n = x;

	a = x % 10;

	x = x /10;

	b = x % 10;

	x = x / 10;

	c = x % 10;

	if(n != (c * 100 + b * 10 + a))
	{
		return false;
	}

	else
	{
		return true;
	}

}

bool NaturalNumber::isDaffodil(int x)
{
	int a, b, c, y = x;

	a = x / 100;

	x = x % 100;

	b = x / 10;

	c = x % 10;

	if(y ==(a * a * a + b * b * b + c * c * c))
	{
		return true;
	}
	else
	{
		return false;
	}
}

void NaturalNumber::print_Daffodils()
{
	for(int i = 100; i < n; ++i)
	{
		if(!isDaffodil(i))
		{
			continue;
		}

		else
		{
			cout << i << " ";
		}
	}

	cout << endl;
}

运行结果:


经验积累:

1、深深体会到了老师所说的不要在非输入输出功能的成员函数中添加多余输入输出,项目的巨大,标准的的功能,不做多余的工作,实现任务分工明确,你做你的,我做的你不能改却可以用,而每用到输入输出,调用相关函数,或在main中处理实现了功能。

上级感言:

不太好的处理逆向数,仅能用于三位数,不能对少或多的数处理。


评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值