POJ-1006-生理周期

题目链接:http://poj.org/problem?id=1006&lang=zh-CN

要求输入四个整数,分别是体力、感情、智力从当年第一天开始出现高峰的天数,以及给定的时间。求给定时间到下一次三个高峰同时出现的时间。

我的代码

#include <iostream>
using namespace std;

int main()
{
	int p, e, i, d, theday, n=1;
	cin >> p >> e >> i >> d;
	while (!(p == -1 && e == -1 && i == -1 && d == -1))
	{
		p %= 23;
		e %= 28;
		i %= 33;
		theday = p;
		while (theday%28!=e || theday%33!=i)
			theday += 23;
		if (theday <= d) theday += 21252;
		cout << "Case " << n << ": the next triple peak occurs in " << theday - d << " days." << endl;
		n++;
		cin >> p >> e >> i >> d;
	}

	return 0;
}


个人认为难点主要是:

一、两个while的条件的判断;

二、几种特殊情况(如三个高峰同时出现的时间与给定的时间是同一天)的处理

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值