题解列表

筛选

不容易系列 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,i; scanf("%d",&a); while(a--){  int sum=3;  scan……

汉诺塔 (C语言代码)

摘要:解题思路:    用递归就好,话说一定注意空格参考代码:#include<bits/stdc++.h> #define hh ios::sync_with_stdio(false),cin.tie(……