题解列表

筛选

2749: 你好,世界!

摘要:#Hello World! ##参考代码: ``` #include using namespace std; int main(){ string a="Hello",b="World……

判断是否为两位数

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int a;    cin>>a;    if(a>=10 &&……

2880: 计算鞍点

摘要:#计算鞍点 ##参考代码: ``` #include using namespace std; int arr[1000][1000],sum=0; int main(){ for(i……

计算三角形面积

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>double distance(float x1, float y1, float x2, float ……

计算线段长度

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){double Xa,Xb,Ya,Yb;scanf("%lf %lf",&Xa,&Y……

大象喝水 调用ceil函数

摘要:解题思路:调用ceil函数注意事项:参考代码:#include<stdio.h>#include<math.h>#define Pi 3.14159int main(){  int h,r;  dou……