摘要: 题目要求找出给定位置的humble number 所谓humble number即只有质因子2,3,5,7的数 基本思想 dp+打表 #include<iostream> #define min(a, b) ((a)<(b)?(a):(b)) using namespace std; int mai 阅读全文