摘要: 枚举View Code //poj1006#include <iostream>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... 阅读全文
posted @ 2012-12-02 16:50 undefined2024 阅读(205) 评论(0) 推荐(0)