给定一个数int k,将素因子只有3、5、7的数从小到大排列,返回其中第k个数。保证k小于等于100。 测试样例: 3 返回:7
加载中...
import java.util.*; public class KthNumber { public int findKth(int k) { // write code here } }
class KthNumber { public: int findKth(int k) { // write code here } };
# -*- coding:utf-8 -*- class KthNumber: def findKth(self, k): # write code here
class KthNumber { public int findKth(int k) { // write code here } }