本文主要是介绍【CSP试题回顾】201912-1-报数(优化),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
CSP-201912-1-报数
解题代码
#include <iostream>
#include <vector>
#include <string>
using namespace std;bool haveSeven(int nn){string t = to_string(nn);if (t.find('7')==-1)return false;elsereturn true;
}bool modSeven(int nn){return nn % 7 == 0;
}vector<int> people(4, 0);
int n, i = 1;int main()
{cin >> n;while (n!=0){if(modSeven(i)||haveSeven(i)) people[(i - 1) % 4]++;else n--;i++;}for(auto&it:people){cout << it << endl;}return 0;
}
这篇关于【CSP试题回顾】201912-1-报数(优化)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!