用正则表达式实现查出二进制数是3的倍数

import java.util.regex.Pattern; public class BinaryRegexp { public static Pattern multipleOf3() { // Regular expression that matches binary inputs that are multiple of 3 return Pa
相关文章
相关标签/搜索