Biorhythms 需要数学推导_C/C++_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > C/C++ > Biorhythms 需要数学推导

Biorhythms 需要数学推导

 2012/1/31 9:21:41  lethorld  程序员俱乐部  我要评论(0)
  • 摘要:#include<stdio.h>#include<stdlib.h>doublepi=3.1415926535898;intmain(intargc,char*argv[]){intp,e,i,d;intk1,k2,k3;intdays;intcnt=1;while(true){scanf("%d%d%d%d",&p,&e,&i,&d);if(p==-1&&e==-1&&i==-1&&
  • 标签:
#include <stdio.h>
#include <stdlib.h>

double pi = 3.1415926535898;
int main(int argc, char *argv[])
{
	int p, e, i, d;
	int k1, k2, k3;
	int days;
	int cnt = 1;

	while (true)
	{
		scanf("%d %d %d %d", &p, &e, &i, &d);
		if (p==-1 && e==-1 && i==-1 && d==-1)
			break;
		
		p = p % 23;
		e = e % 28;
		i = i % 33;

		k1 = k2 = k3 = 0;	 
		days = (5544 * p + 14421 * e + 1288 * i - d) % (21252);      
		if (days <= 0) {             
			days = 23 * 28 * 33 + days;       
		} 
		printf("Case %d: the next triple peak occurs in %d days.\n", cnt++, days);	
	}
	return 0;
}
  • 相关文章
发表评论
用户名: 匿名