摘要:
看到有些天干地支的匹配是不对的,不是简单的for - for循环 而是配对出现的 a = ['甲','乙','丙','丁','戊','己','庚','辛','壬','癸'] b = ['子','丑','寅','卯','辰','巳','午','未','申','酉','戌 阅读全文
摘要:
#include <cstdio> #include <cstring> #include <iostream> #include <stdio.h> #include <iomanip> #include <string> using namespace std; int main() { int 阅读全文
摘要:
#include <cstdio> #include <cstring> #include <iostream> #include <stdio.h> #include <iomanip> #include <string> using namespace std; int main() { int 阅读全文
摘要:
#include <cstdio> #include <cstring> #include <iostream> #include <stdio.h> #include <iomanip> #include <string> using namespace std; int main() { int 阅读全文
摘要:
#include <cstdio> #include <cstring> #include <iostream> #include <stdio.h> #include <iomanip> using namespace std; int SuShu(int n) { //去除小于2的数 if(n 阅读全文
摘要:
#include <cstdio> #include <cstring> #include <iostream> #include <stdio.h> #include <iomanip> using namespace std; int main() { int n = 0; cin >> n; 阅读全文
摘要:
#include <cstdio> #include <cstring> #include <iostream> #include <stdio.h> using namespace std; bool CheckYear(int n) { if(n % 400 == 0) return true; 阅读全文
摘要:
#include <cstdio> #include <cstring> #include <iostream> #include <stdio.h> using namespace std; int main() { //字符判断 char a[5]; cin.getline(a,4); if(a 阅读全文
摘要:
#include <iostream> using namespace std; //卡特兰数列原理及应用 int catalan(int n){ if (n == 1)return 1; if (n == 2)return 1; int res = 0; for (int i = 1; i <= 阅读全文
摘要:
FFmpeg VP8 Encoding Options See http://ffmpeg.org/ffmpeg.html#libvpx for additional parameter information. See http://ffmpeg.org/trac/ffmpeg/wiki/vpxE 阅读全文