1. 程式人生 > >第一期訓練題第八題

第一期訓練題第八題

問題連結:https://vjudge.net/problem/HDU-2101

問題簡述:輸入多組A、B資料,判斷(A+B)能否整除86,如果能輸出yes,反之輸出no。

程式說明:用while語句實現多組資料輸入輸出,if語句判斷是否符合條件。

AC程式碼:

#include<iostream>
using namespace std;
int main()
{
      int a,b;
      while(cin>>a>>b)
      {
          if((a+b)%86==0)
          {
              cout<<"yes"<<endl;
          }
          else
          {
              cout<<"no"<<endl;
          }
      }
      return  0;
}