CCF计算机职业资格认证考试-报数
程序员文章站
2022-06-21 19:21:52
题目:http://118.190.20.162/view.page?gpid=T100#include using namespace std;bool check7(int x){ if(x%7==0) return true; string s=to_string(x); for(int i=0;i
题目:http://118.190.20.162/view.page?gpid=T100
#include <bits/stdc++.h> using namespace std; bool check7(int x) { if(x%7==0) return true; string s=to_string(x); for(int i=0;i<s.size();i++) { if(s[i]=='7') return true; } return false; } int main() { ios::sync_with_stdio(false); int n,a=0,b=0,c=0,d=0,count=0; cin>>n; for(int i=1;;i++) { if(i%4==1) { if(check7(i)) a++; else count++; } else if(i%4==2) { if(check7(i)) b++; else count++; } else if(i%4==3) { if(check7(i)) c++; else count++; } else if(i%4==0) { if(check7(i)) d++; else count++; } if(count>=n) break; } cout<<a<<endl<<b<<endl<<c<<endl<<d; return 0; }
上一篇: VB.NET版机房收费系统---导出Excel表格
下一篇: day15自定义模块的导入
推荐阅读
-
ccf认证试题——201912-1【报数】
-
CCF计算机职业资格认证考试 201809-2 买菜
-
CCF计算机软件能力认证试题练习:202006-2 稀疏向量 java100分代码
-
CCF计算机职业资格认证考试-报数
-
Python入门100道习题(9)——CCF CSP认证考试真题:出现次数最多的数
-
CCF计算机职业认证考试
-
Python入门习题(14)——CCF CSP认证考试真题:数列分段
-
Python入门习题(18)——CCF CSP认证考试真题:中间数
-
Python入门习题(10)——CCF CSP认证考试真题:相反数
-
Python入门习题(20)——CCF CSP认证考试真题:打酱油