感谢支持,谢谢你们的支持 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ char iq; cin>>iq; if…… 题解列表 2023年12月10日 0 点赞 1 评论 204 浏览 评分:6.0
题解 2779: 输出绝对值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;double a;int main(){ cin>>a; if(a>0…… 题解列表 2023年12月10日 0 点赞 0 评论 540 浏览 评分:6.0
蓝桥杯算法训练VIP-整数平均值 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int i,n; int sum=0,ave; scanf("%d",&n); int …… 题解列表 2023年12月11日 0 点赞 0 评论 360 浏览 评分:6.0
幂的末尾(python简单解法) 摘要:解题思路:这题很简单,直接看注释参考代码:a, b = map(int, input().split())x = (a ** b) % 1000 #要求a**b的末三位,所以取1000的余数if…… 题解列表 2023年12月11日 1 点赞 0 评论 468 浏览 评分:6.0
用头文件更快捷 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<ctype.h>int main(){ char s[300]; ge…… 题解列表 2023年12月12日 0 点赞 0 评论 188 浏览 评分:6.0
动态规划-松散子序列java 摘要: import java.util.Scanner; public class Main{ public static void main(String[] args){ …… 题解列表 2023年12月12日 0 点赞 0 评论 462 浏览 评分:6.0
python来解一下 摘要:解题思路:while True: try: s=list(map(int,input().split())) n,m,items=s[0],s[1],s[2:] a=[i for…… 题解列表 2023年12月13日 0 点赞 0 评论 212 浏览 评分:6.0
编写题解 1024: [编程入门]矩阵对角线求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #define n 3 int main() { int a[n][n],i,j,k; for(i=0; i<n; i++…… 题解列表 2023年12月15日 0 点赞 0 评论 122 浏览 评分:6.0
编写题解 1025: [编程入门]数组插入处理 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(int i) { int a[10],j,k; for(i=0;i<10;i++)scan…… 题解列表 2023年12月15日 0 点赞 0 评论 217 浏览 评分:6.0
题解 2944: 图像旋转翻转变换 摘要:```c #include #include #define MAX_SIZE 100 void rotate90Clockwise(int mat[MAX_SIZE][MAX_S…… 题解列表 2023年12月17日 0 点赞 0 评论 298 浏览 评分:6.0