博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj1006
阅读量:6695 次
发布时间:2019-06-25

本文共 652 字,大约阅读时间需要 2 分钟。

枚举

View Code
//poj1006#include 
using namespace std;int a, b, c, d, t, dd;void work(){ a %= 23; b %= 28; c %= 33; dd = d; while (1) { d++; if (d % 23 == a && d % 28 == b && d % 33 == c) { printf("Case %d: the next triple peak occurs in %d days.\n", t, d - dd); return; } }}int main(){ //freopen("t.txt", "r", stdin); t = 0; while (cin >> a >> b >> c >> d) { t++; if (a == -1 && b == -1 && c == -1 && d == -1) break; work(); } return 0;}

转载于:https://www.cnblogs.com/rainydays/archive/2012/12/02/2798404.html

你可能感兴趣的文章
linux运维转行程序员
查看>>
国内外软件测试大会汇总
查看>>
背水一战 Windows 10 (72) - 控件(控件基类): UIElement - UIElement 的位置, UIElement 的布局, UIElement 的其他特性...
查看>>
iscis
查看>>
iOS HTTP 资源时需要对 URL 进行 Encode
查看>>
nginx 负载均衡5种方式及其服务器几种状态
查看>>
每天早上七点钟备份公司的web站点计划
查看>>
iOS GCD(Grand Central Dispatch)的使用(1)
查看>>
linux ftp上传下载命令操作
查看>>
ELK实时日志分析平台(elk+kafka+metricbeat)-metricbeat(三)
查看>>
Linux命令之帮助命令
查看>>
NGINX由入门到精通:编译安装nginx
查看>>
救援模式修复bootloader
查看>>
Java中元组的使用
查看>>
medusa 2.0的简单使用
查看>>
照片美妆---人脸老化
查看>>
zabbix3.2升级3.4报错Database error
查看>>
在C#中使用官方驱动操作MongoDB
查看>>
《精通javascript》几个简单的函数(一)
查看>>
XML 编辑器 介绍
查看>>