题解列表

筛选

王牌花色 (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],……

简单的a+b (Java代码)

摘要:解题思路:使用输入函数来解题注意事项:代码技术记得关闭扫描器,不然编译器会有警告参考代码:/*输入任意两个整数,求两数之和*/import java.util.Scanner;public class……

简单的a+b (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>         in mian()         {             int a,b,m=0;           whil……