题解列表

筛选

拆分位数 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){    int a,b,c,n;    scanf("%d",&n);  ……

王牌花色 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>char zl(char n){     if(n==&#39;A&#39;) return &#39;1&#39;;     els……

马拦过河卒 (C++代码)

摘要:解题思路:    参考代码:#include<bits/stdc++.h> using namespace std; typedef long long LL; LL Dp[22][22],……