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的主要内容,如果未能解决你的问题,请参考以下文章

如何定义外键

Oracle EBS 创建 RMA

多线程:用两个线程玩猜数字游戏......

PL/SQL 错误问题

使用 MethodHandle 查找最具体的重载方法

PLSQL变量和类型,流程控制语句,集合