题解列表
打错了,是计算三角形面积的答案,大家别误会
摘要:参考代码:#includeusing namespace std;int main(){ double a; cin>>a>>b>>c>>d>>e>>f; double s=sqrt……
2774: 计算三角形面积
摘要:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ double a; cin>>a>>b>>c>>d>>e>>f; ……
1953: 三位数分解(制作不易,给个好评吧)
摘要:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b,c,d; cin>>a; b=a/100; ……
并查集 + 模拟 = 恶心
摘要:# 并查集 + 模拟
总结:真的很恶心
## 解题思路
该有的注释都有了
## 代码实现
```java
import java.util.*;
public class Mai……
大小写转换(c语言代码)
摘要:```c
#include
#include
void toUp(char* strs);
int main()
{
char strs[81] = { 0 };
while……
字符串问题(c语言递归)
摘要:```c
#include
#include
void swap(char *s1,char* s2);
void reverse(char* strs,int left,int righ……