题解列表

筛选

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

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

1099: 校门外的树

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

经典递归练习汉诺塔

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

dfs+format格式化输出

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

超简单新手题解

摘要:解题思路:pow函数注意事项:参考代码:#i#include <stdio.h>int main() { int a,b,j; scanf("%d %d",&a,&b); j=pow(a,b); pr……