#16466: JAVA AC


ml0427 (ml0427)

學校 : 不指定學校
編號 : 82063
來源 : [1.34.207.68]
最後登入時間 :
2023-07-20 16:51:16
d124. 3的倍数 | From: [218.161.78.2] | 發表日期 : 2019-01-03 14:43

package test;

import java.math.BigDecimal;
import java.text.ParseException;
import java.util.Scanner;

public class Test {

/**
* d124: 3的倍数
*
* @param args
* @throws ParseException
*/
public static void main(String[] args) {

Scanner cin = new Scanner(System.in);
while (cin.hasNext()) {
BigDecimal start = cin.nextBigDecimal();

if (start.remainder(new BigDecimal(3)).intValue() == 0) {
System.out.println("yes");
} else {
System.out.println("no");
}
}
cin.close();
}

}

 
ZeroJudge Forum