1038: [编程入门]宏定义练习之三角形面积 摘要:解题思路:注意事项:参考代码:import matha,b,c = map(int,input().split())s = (a+b+c)/2print("{:.3f}".format(math.sq…… 题解列表 2022年04月07日 0 点赞 0 评论 1156 浏览 评分:0.0
动态规划解题 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; while(scanf("%d",…… 题解列表 2022年04月07日 0 点赞 0 评论 395 浏览 评分:0.0
[Sapphire]1511:链表复数求和(C语言代码) 摘要:简单链表求和2022/4/7Sapphire解题思路:链表废才学链表的第一题,哈哈哈光看代码就可以了,我会有相应的解释注意事项:1.我有一问,这里如果不要typedef,那么在申请结点空间的时候应该用…… 题解列表 2022年04月07日 0 点赞 0 评论 529 浏览 评分:0.0
C语言训练-尼科彻斯定理(python版) 摘要:解题思路:注意事项:参考代码:sum = 0n = int(input())s = []h = n**3if n%2 !=0 :#判断n奇偶性 for i in range(n**2-n//2*…… 题解列表 2022年04月07日 0 点赞 0 评论 553 浏览 评分:0.0
浅水一波【c++】 摘要:```cpp #include using namespace std; int main(){ double a, b, x; cin >> a >> b; x = -b…… 题解列表 2022年04月07日 0 点赞 0 评论 459 浏览 评分:0.0
图的遍历——BFS广度优先搜索 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; const int mapsize=55; int Map[mapsize…… 题解列表 2022年04月07日 0 点赞 0 评论 625 浏览 评分:0.0
转换字符【c++】 摘要:```cpp #include using namespace std; int main(){ string s1, s2, s3 = "", s4 =""; cin >> …… 题解列表 2022年04月07日 0 点赞 0 评论 421 浏览 评分:0.0
C语言训练-最大数问题 摘要:解题思路:注意事项:参考代码: #include<stdio.h>int main(){ int a[1000], max,i=0; scanf("%d", &a[0]); max = a…… 题解列表 2022年04月07日 0 点赞 0 评论 388 浏览 评分:0.0
时间转换【C++】 摘要:```cpp #include using namespace std; int main(){ int t; cin >> t; int shi = t / 3600; …… 题解列表 2022年04月07日 0 点赞 0 评论 483 浏览 评分:0.0
C++ 究极三目运算符 摘要:解题思路:注意事项:参考代码:#include<cstring>#include<stdio.h>int main(){ int n,t,k,j,i=1;char c[124][124]; …… 题解列表 2022年04月07日 0 点赞 0 评论 557 浏览 评分:0.0