题解列表

筛选

直接运用数学方法计算就完了!

摘要:解题思路:运用中学数学思想进行计算就好了注意事项:细心点,慢点算,参考代码:#include<stdio.h>intmain(){&nbsp;&nbsp;&nbsp……

dfs真的要好好学

摘要:解题思路:注意事项:参考代码:#输入站点数和通道数n,m=map(int,input().split())#定义图的邻接矩阵table=[[0]*(n)&nbsp;for&nbsp;_……

递推加字典

摘要:参考代码:b={1:1,2:2,3:3,4:4}for&nbsp;i&nbsp;in&nbsp;range(4,56):&nbsp;&nbsp;&nbs……

水仙花数的判断

摘要:解题思路:注意事项:调用pow()函数,要引用#include<math.h>的库文件参考代码:#include<iostream>usingnamespacestd;#inc……

printf Hello World!

摘要:解题思路:用printf输出一行你想表示的字符串注意事项:注意换行用\n参考代码:#include<stdio.h>intmain(){&nbsp;&nbsp;printf……