题解 1463: 蓝桥杯基础练习VIP-Sine之舞

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

Sine之舞 C++递归

摘要:```cpp #include #include using namespace std; string s; void dfs(int begin, int num) { ……

两次递归,Sn,An

摘要:解题思路:注意事项:参考代码:#include<stdio.h> //求An的值 void An(int n, int i) { if (n==1) { printf("sin(%……