题解列表

筛选

dfs+format格式化输出

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main {    public static void main(String[] args……

经典递归练习汉诺塔

摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; void hhh(int n,int A=1,int B=2,int C=3……

1099: 校门外的树

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    int L,M;    cin>>L>>M;    ……

c语言中如何使用倍数(exp版)

摘要:解题思路:注意事项:使用倍数要使用math头文件本人在答案里使用了exp(x)意思是e的x倍数,p是大家常用pow的意思,负数前面加个-就可以了,注意使用scanf参考代码:#include<stdi……

c语言中双精度绝对值的函数

摘要:解题思路:计算浮点型绝对值使用fabs函数,原型:double fabs(double x)计算整数绝对值使用abs函数,原型:int abs(int x)计算长整型绝对值使用labs函数,原型:lo……

2828: 与7无关的数

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){    int t=0,i,n,sum=0;    scanf("%d",&n);……