题解列表

筛选

1014: 阶乘求和题解(递归)

摘要:**解题思路:** 使用递归的方法定义一个求阶乘的函数来计算。**注意事项:** 需要将 int 整形改为 long long int 长整形型,否则可能出现测试 2 答案错误的情况。……

干就完了,bro

摘要:解题思路:注意事项:参考代码:#include <iostream>#include <vector>#include <stack>using namespace……

好数的常规思路

摘要:解题思路:注意事项:参考代码:#include<stdio.h>inthaoshu(intn);inthaoshu(intn){……

数字母——函数

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ char a[100]; int alpha=0……