最简答案 一个一维数组就搞定 摘要:解题思路:x/n+1 可以算出在哪一行x%n+1可以算出在哪一列注意事项:简单无脑,把最后输的行列搞明白就行参考代码:#include<stdio.h>int main(){ int arr[200]…… 题解列表 2023年12月02日 0 点赞 0 评论 335 浏览 评分:0.0
题解 2764: 带余除法 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<a/b…… 题解列表 2023年12月02日 0 点赞 0 评论 544 浏览 评分:9.9
题解 1669: 求圆的面积 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include <iomanip>int main(){ double r; c…… 题解列表 2023年12月02日 0 点赞 0 评论 887 浏览 评分:9.9
2765: 计算分数的浮点数值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double a,b; cin>>a>>b; …… 题解列表 2023年12月02日 0 点赞 0 评论 587 浏览 评分:9.9
编写题解 2760: 整型与布尔型的转换 摘要:解题思路:wu注意事项:wu参考代码:#include<iostream>using namespace std;int main(){ int a; cin>>a; cout<<(…… 题解列表 2023年12月02日 0 点赞 0 评论 578 浏览 评分:9.9
2776: A*B问题 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b; …… 题解列表 2023年12月02日 1 点赞 0 评论 466 浏览 评分:10.0
简单易懂的解题思路 摘要:解题思路:利用while循环和for循环的小白解题思路。注意事项:参考代码:#include<stdio.h>int main(){ int n, i; scanf("%d", &n);int a[n…… 题解列表 2023年12月02日 0 点赞 0 评论 424 浏览 评分:0.0
c语言链表的排序 摘要:```c #include #include typedef struct _student { int num; int score; }student; typedef stru…… 题解列表 2023年12月02日 0 点赞 0 评论 1914 浏览 评分:0.0
优质题解 题解 3173: 蓝桥杯2023年第十四届省赛真题-蜗牛(动态规划,Java) 摘要:解题思路:动态规划两个数组变量:// 坐标原点距竹子传送点最短时间 // minStart[i]代表坐标原点距第i个竹子上的传送点的最短时间,i从1开始 double[] minStart = n…… 题解列表 2023年12月02日 862 点赞 0 评论 10089 浏览 评分:8.0
[字符串复制]Sn的公式求和 摘要:解题思路:注意事项:参考代码:n = int(input()) Sum = 0 for i in range(1, n + 1): Sum += int('2' * i)…… 题解列表 2023年12月01日 0 点赞 0 评论 1970 浏览 评分:0.0