摘要:
#include<stdio.h> #include<time.h> #include<stdlib.h> #include<windows.h> using namespace std; int main (){ time_t t; struct tm* lt; for(;;){ time(&t) 阅读全文
摘要:
题目描述: 数字“4”和“7”是幸运数字,那么仅用幸运数字组成的整数就是幸运整数,请你帮忙找出第 k 个幸运整数。输入 k,输出第 k 个整数。 思路: 使用模拟的方式,像高精度一样,把每个位模拟一下做+1的操作例如一开始是4,下一个就是7,再下一个需要进位,变为44,以此类推 我们可以使用一个数组 阅读全文