Y.Guess the number
Posted ssniper
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Y.Guess the number相关的知识,希望对你有一定的参考价值。
Y
水题,但是第一次提交还是粗心错了
#include<bits/stdc++.h> using namespace std; int main() ios::sync_with_stdio(false); // freopen("in.in", "r", stdin); int n; cin >> n; while(n--) int a, b, c; cin >> a >> b >> c; bool flag = false; for(int i=1000; i<=9999; i++) if(i%a == 0 && (i+1)%b == 0 && (i+2)%c == 0) flag = true; cout << i << endl; break; if(!flag) cout << "Impossible" << endl; return 0;
以上是关于Y.Guess the number的主要内容,如果未能解决你的问题,请参考以下文章