题解列表

筛选

鸡兔同笼-题解(Java代码)

摘要:解题思路:注意事项:参考代码:Scanner sc = new Scanner(System.in); int s = sc.nextInt(); if (s<=40 && s>=20){   ……

分类计算-题解(Java代码)

摘要:解题思路:注意事项:参考代码:Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); i……

求中间数-题解(Java代码)

摘要:解题思路:注意事项:参考代码:Scanner sc = new Scanner(System.in); int a [] = new int [3]; for (int i=0;i<3;i++){……

最多的水-题解(Java代码)

摘要:解题思路:注意事项:参考代码:public static void main(String[] args) {     Scanner sc = new Scanner(System.in);  ……