编写题解 1124: C语言训练-大、小写问题 摘要:```c //大、小写问题 #include #include void LowerConver(){ char s[100]; gets(s); int n = strlen…… 题解列表 2022年08月30日 0 点赞 0 评论 449 浏览 评分:0.0
编写题解 1015: [编程入门]求和训练 摘要:解题思路:注意事项:参考代码:int main(){ int a,b,c; scanf("%d %d %d",&a,&b,&c); int sum1=0; int sum2=0…… 题解列表 2022年08月31日 0 点赞 0 评论 326 浏览 评分:0.0
编写题解 1011: [编程入门]最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a, b; scanf("%d %d", &a, &b); int i = a; …… 题解列表 2022年08月31日 0 点赞 0 评论 391 浏览 评分:0.0
编写题解 1018: [编程入门]有规律的数列求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N; float sum=0; float sum1=0; scanf("%d"…… 题解列表 2022年08月31日 0 点赞 0 评论 788 浏览 评分:0.0
编写题解 1019: [编程入门]自由下落的距离计算 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N,M; scanf("%d %d", &M,&N); float h=M; f…… 题解列表 2022年08月31日 0 点赞 0 评论 844 浏览 评分:0.0
题解 1154: C语言训练-邮票组合问题(C) 摘要:参考代码:#include<stdio.h> int main(void){ int i,j,sum,sum1=0; int n=0; for(i=0;i<5;i++){ fo…… 题解列表 2022年08月31日 0 点赞 0 评论 488 浏览 评分:0.0
reverse函数解 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>#include<algorithm>using namespace std;int main(){ …… 题解列表 2022年08月31日 0 点赞 0 评论 487 浏览 评分:0.0
编写题解 2620: 蓝桥杯2021年第十二届国赛真题-大写 摘要:解题思路:注意事项:参考代码:#include<iostream> #include <bits/stdc++.h> using namespace std; int main() { …… 题解列表 2022年08月31日 0 点赞 0 评论 481 浏览 评分:0.0
编写题解 2591: 蓝桥杯2020年第十一届省赛真题-成绩统计 摘要:解题思路:注意事项:参考代码:#include<iostream> #include <bits/stdc++.h> using namespace std; int main() { …… 题解列表 2022年08月31日 0 点赞 0 评论 588 浏览 评分:0.0
同因查找-简便方法 摘要:解题思路://设i为任何一个数 //因为10~1000,所以设置i=10 //若是同因,则它们的取余为0 参考代码:#include<stdio.h>int main(){ int i;//设i为任何…… 题解列表 2022年09月01日 0 点赞 0 评论 357 浏览 评分:0.0