1062: 二级C语言-公约公倍 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int a[8] = { 0,0,0,1,0,0,0,0 }; scanf_s("%d%d", &a[0], …… 题解列表 2023年07月19日 0 点赞 0 评论 343 浏览 评分:0.0
编写题解 1003: [编程入门]密码破译,扩展使用字符函数解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float M,N,sum = 0.0; scanf("%f %f",&M,&N); for(…… 题解列表 2023年07月19日 0 点赞 0 评论 419 浏览 评分:0.0
1022: [编程入门]筛选N以内的素数(C语言) 摘要: #include #include int sushu(int number) { if(number…… 题解列表 2023年07月18日 0 点赞 0 评论 433 浏览 评分:0.0
1019: [编程入门]自由下落的距离计算 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { float a[3] = { 0,0,0},m,n; scanf_s("%f%f", &m,&n); for …… 题解列表 2023年07月18日 0 点赞 0 评论 322 浏览 评分:0.0
1018: [编程入门]有规律的数列求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { float a[8] = { 0,0,2,1,1,1,0,0 }; scanf_s("%f", &a[0]);…… 题解列表 2023年07月18日 0 点赞 0 评论 301 浏览 评分:0.0
石头剪刀布 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ //比赛n轮,输入n ,小A的周期长度na,小B的周…… 题解列表 2023年07月18日 0 点赞 0 评论 421 浏览 评分:0.0
石头剪刀布 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ //比赛n轮,输入n ,小A的周期长度na,小B的周…… 题解列表 2023年07月18日 0 点赞 0 评论 393 浏览 评分:0.0
2821: 开关灯 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[10000000];int main(){ int n,m; …… 题解列表 2023年07月18日 0 点赞 0 评论 344 浏览 评分:2.0
1579: 蓝桥杯算法提高VIP-陶陶摘苹果2(感谢支持) 摘要:参考代码:int main() { int sum = 0;//定义变量sum的值为0,方便以后计算 cin>>a>>b;//输入a和b的值 for(int i=0;i…… 题解列表 2023年07月18日 0 点赞 1 评论 260 浏览 评分:7.3
3020: 最大数位置 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a[100000];int main(){ int n,maxx=1,…… 题解列表 2023年07月18日 0 点赞 0 评论 451 浏览 评分:0.0