1 2 3 4 5 6 7 8 9 10 11 12 13 14
#!/usr/bin/env python # coding:utf-8 def func(x): pow, flg, ret = 0, 1, None while flg: pow += 1 res = 2** pow if res > x: ret = res flg = 0 return ret if __name__ == '__main__': print func(510)
Sign in to leave a comment.