01 #include<iostream>02 #include<cmath>03 using namespace std;0405 double f(double a,double b,double c){06 double s=(a+b+c)/2;07 return sqrt(s*(s-a)*(s-b)*(s-c));08 }0910 int main{11 cout.flags(ios::fixed);12 cout.precision(4);1314 int a,b,c;15 cin>>a>>b>>c...
1. 试题回顾:简要概括2023年CSP-J/S第一轮初赛的题目内容,包括算法设计思路和解题方法。 2. 参考答案:详细解释每个题目的正确解法,并给出相应的代码实现。 a. 题目1:求解两个整数的最大公约数。 b. 题目2:判断一个数是否为素数。 c. 题目3:查找一个有序数组中的特定元素。 d. 题目4:求解一个二维矩阵...