#27532:


qgd20040229@gmail.com (时年)

學校 : 不指定學校
編號 : 170559
來源 : [27.105.55.178]
最後登入時間 :
2021-10-10 23:00:28
e189. 3的倍數 - 面試題 -- 트와이스 | From: [27.105.55.178] | 發表日期 : 2021-10-10 23:40

#include <iostream>

using namespace std;

 

int main(){

  int n;

  while (cin >> n){

    if (n%3==0){

      cout <<"YES"<<endl;

    }

    else {

      cout <<"NO"<<endl;

    }

  }

}

 
ZeroJudge Forum