题解 3013: 求小数的某一位 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,n,c; cin>>a>>b>…… 题解列表 2024年01月16日 0 点赞 0 评论 358 浏览 评分:0.0
题解 3013: 求小数的某一位 摘要:解题思路:用for循环来模拟除法的过程注意事项:注意:本题不需要浮点型,用sum累加器存储商,最后输出 。 …… 题解列表 2024年01月16日 0 点赞 0 评论 306 浏览 评分:0.0
3013: 求小数的某一位 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long a,b,n,c; cin>…… 题解列表 2024年01月16日 0 点赞 0 评论 321 浏览 评分:0.0
题解 2818: 分离整数的各个数位 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long a; cin>>a; …… 题解列表 2024年01月16日 0 点赞 0 评论 312 浏览 评分:0.0
2818: 分离整数的各个数位 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long a; cin>>a; …… 题解列表 2024年01月16日 0 点赞 0 评论 310 浏览 评分:0.0
题解 2819: 数字反转 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ /*way1 long long a; …… 题解列表 2024年01月16日 0 点赞 0 评论 290 浏览 评分:0.0
使用java做出结果,标题加长ccccccccccccccc糖果游戏。更新算法,简化 摘要:解题思路:注意事项:这个是实时影响的,前一个值会影响后一个值,所以只需要一个数组就够了参考代码:import java.sql.SQLOutput; import java.util.Scanner…… 题解列表 2024年01月16日 0 点赞 0 评论 419 浏览 评分:0.0
c代码记录之大写转小写--水题 摘要: ```c #include int main(){ char a; while((a=getchar())!=EOF) printf("%c",a…… 题解列表 2024年01月16日 0 点赞 0 评论 395 浏览 评分:0.0
c代码记录之去掉空格--水题 摘要: ```c #include int main(){ char a; while((a=getchar())!=EOF) if(a!=' ') …… 题解列表 2024年01月16日 0 点赞 0 评论 341 浏览 评分:0.0
题解 3013: 求小数的某一位 标题 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ long long a,b,n,c; cin>>a>>b…… 题解列表 2024年01月16日 0 点赞 0 评论 431 浏览 评分:0.0