题解 2820: 含k个3的数

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

2820: 含k个3的数

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int i=0,x,y;    scanf("%d %d",&x,&y);    if(x%19==0) ……

2820: 含k个3的数

摘要:解题思路:注意事项:参考代码:a,b = map(int,input().split())c = 0for i in str(a):    if i == &#39;3&#39;:        c ……

含k个3的数的解

摘要:解题思路:注意事项:参考代码:m = int(input())k=int(input())if m%19==0:    m=str(m)    count=m.count(&#39;3&#39;)  ……

编写题解 2820: 含k个3的数

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int jgs(int n) { int j=0;while(n){if(n%10=……

循环遍历(java)

摘要:解题思路:  注意事项:  利用对数函数(Math.log10()+1 )求数m的位数参考代码:import java.util.Scanner;public class Main { public ……

2820: 含k个3的数

摘要:参考代码:m, k = map(str, input().split()) if int(m) % 19 == 0 and &#39;&#39;.join(m).count(k) == 3:   ……

用字符串简单解决

摘要:解题思路:注意事项:注意计算时要把字符串转换为整型才可以计算!参考代码:#include <iostream>using namespace std;int main(){   string m;  ……

2820: 含k个3的数

摘要:解题思路:注意事项:仅供参考,禁止抄袭参考代码:#include <bits/stdc++.h>using namespace std;int main(){    long long F,B,I,p……

题解 2820: 含k个3的数

摘要:解题思路:1.ss是为了和d比较;2.只拆解数位,不和并数位注意事项:参考代码:#include <iostream>using namespace std;int main(){    long l……