2759: 打印字符 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a; cin>>a; cout<…… 题解列表 2023年11月25日 0 点赞 0 评论 226 浏览 评分:0.0
题解 2759: 打印字符 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a; cin>>a; cout<<(c…… 题解列表 2023年11月25日 0 点赞 0 评论 254 浏览 评分:0.0
小白钓鱼(简单题解) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,b=0,i,a; scanf("%d",&a); for(i=1;i<=a;i++){ scanf…… 题解列表 2023年11月25日 0 点赞 0 评论 309 浏览 评分:0.0
奇偶求和!!! 摘要:解题思路:选判断奇数和偶数,再加就行了注意事项:参考代码:#include<stdio.h>int main(){ int n,odd=0,even=0; scanf("%d",&n); …… 题解列表 2023年11月25日 0 点赞 0 评论 154 浏览 评分:0.0
循环队列之数字后移 摘要:解题思路:看成循环队列即可注意事项:参考代码:n=int(input())x=list(input().split())y=list(x)m=int(input())for i in range(0,…… 题解列表 2023年11月25日 0 点赞 0 评论 221 浏览 评分:0.0
双向链表实现大整数的乘法 摘要:参考代码:#include<stdio.h> #include<string.h> #include<stdlib.h> struct lennum{ int num; struct …… 题解列表 2023年11月25日 0 点赞 0 评论 315 浏览 评分:0.0
最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,k; scanf("%d%d",&a,&b); if(a<b) { …… 题解列表 2023年11月25日 0 点赞 0 评论 330 浏览 评分:0.0
2991: 八进制到十进制 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;char s[10000];int main(){ cin>>s; int…… 题解列表 2023年11月25日 0 点赞 0 评论 233 浏览 评分:0.0
2082: 蓝桥杯基础练习-十六进制转十进制 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;char s[10000];int main(){ cin>>s; int…… 题解列表 2023年11月25日 0 点赞 0 评论 318 浏览 评分:0.0
求矩阵的两对角线上的元素之和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,j,sum1=0,sum2=0,sum; scanf("%d",&n); in…… 题解列表 2023年11月25日 0 点赞 0 评论 132 浏览 评分:0.0