首页 > 其他 > 详细

Y.Guess the number

时间:2019-08-16 00:32:25      阅读:117      评论:0      收藏:0      [点我收藏+]

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

原文:https://www.cnblogs.com/ssNiper/p/11361285.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!