题解列表

筛选

计算三角形面积

摘要:解题思路:运用求两点间距离公式和海伦公式注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    double xa,x……

感谢支持(谢谢)

摘要:解题思路:#include <bits/stdc++.h>using namespace std;int main(){    double xa,ya,xb,yb,xc,yc;    cin>>xa……

2774: 计算三角形面积

摘要:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    double a;    cin>>a>>b>>c>>d>>e>>f;  ……

题解解解解解解解解

摘要:解题思路:#include <bits/stdc++.h>using namespace std;int main(){   int a,b,n;    cin>>a>>b>>n;    cout<<……

普通的写法

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>#include<set>using namespace std;const int N =10……

留住了塔没留住她:[编程入门]三个数最大值

摘要:解题思路:    学过C++都知道,C++有一个函数叫做“max( 变量A , 变量B );”它可以让我们得出变量A 变量B的最大值    所以我们可以使用这个函数。注意事项:    注意:不管你学了……