c代码记录之大写转小写--水题 摘要: ```c #include int main(){ char a; while((a=getchar())!=EOF) printf("%c",a…… 题解列表 2024年01月16日 0 点赞 0 评论 239 浏览 评分:0.0
使用java做出结果,标题加长ccccccccccccccc糖果游戏。更新算法,简化 摘要:解题思路:注意事项:这个是实时影响的,前一个值会影响后一个值,所以只需要一个数组就够了参考代码:import java.sql.SQLOutput; import java.util.Scanner…… 题解列表 2024年01月16日 0 点赞 0 评论 150 浏览 评分:0.0
题解 2820: 含k个3的数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long m,k,sum=0; ci…… 题解列表 2024年01月16日 0 点赞 3 评论 164 浏览 评分:9.9
2819: 数字反转 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long n,ans = 0; ci…… 题解列表 2024年01月16日 0 点赞 0 评论 157 浏览 评分:9.9
题解 2819: 数字反转 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ /*way1 long long a; …… 题解列表 2024年01月16日 0 点赞 0 评论 146 浏览 评分:0.0
2818: 分离整数的各个数位 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long a; cin>>a; …… 题解列表 2024年01月16日 0 点赞 0 评论 150 浏览 评分:0.0
题解 2818: 分离整数的各个数位 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long a; cin>>a; …… 题解列表 2024年01月16日 0 点赞 0 评论 172 浏览 评分:0.0
利用数学公式求和 摘要:解题思路:由题易知,此题为求解前n项和,但其前n项和不是等比或等差数列,通过观察得知,其中每一项(2,22,222...)均为等比数列前n项和。即:222=2*10^0+2*10^1+2*10^2=2…… 题解列表 2024年01月16日 0 点赞 0 评论 346 浏览 评分:9.9
3013: 求小数的某一位 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long a,b,n,c; cin>…… 题解列表 2024年01月16日 0 点赞 0 评论 170 浏览 评分:0.0
题解 3013: 求小数的某一位 摘要:解题思路:用for循环来模拟除法的过程注意事项:注意:本题不需要浮点型,用sum累加器存储商,最后输出 。 …… 题解列表 2024年01月16日 0 点赞 0 评论 139 浏览 评分:0.0