最多的水-题解(Java代码) 摘要:解题思路:注意事项:参考代码:public static void main(String[] args) { Scanner sc = new Scanner(System.in); …… 题解列表 2021年01月26日 0 点赞 0 评论 437 浏览 评分:0.0
求中间数-题解(Java代码) 摘要:解题思路:注意事项:参考代码:Scanner sc = new Scanner(System.in); int a [] = new int [3]; for (int i=0;i<3;i++){…… 题解列表 2021年01月26日 0 点赞 0 评论 512 浏览 评分:0.0
分类计算-题解(Java代码) 摘要:解题思路:注意事项:参考代码:Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); i…… 题解列表 2021年01月26日 0 点赞 0 评论 467 浏览 评分:0.0
鸡兔同笼-题解(Java代码) 摘要:解题思路:注意事项:参考代码:Scanner sc = new Scanner(System.in); int s = sc.nextInt(); if (s<=40 && s>=20){ …… 题解列表 2021年01月26日 0 点赞 0 评论 648 浏览 评分:0.0
二级C语言-平均值计算-题解(C语言代码) 摘要:解题思路:注意事项:参考代码: #include<stdio.h>#include<math.h>int main(){ int a[10]; int i,m; int sum; sum=0.0…… 题解列表 2021年01月26日 0 点赞 0 评论 686 浏览 评分:0.0
蛇行矩阵-题解(C语言代码)此代码很短!!!! 摘要:解题思路:分析一下每一行数字的规律即可。注意事项:参考代码:#include<stdio.h>int main (){ int n,i,j,x=1,y; while (scanf("%d",&n)!=…… 题解列表 2021年01月26日 0 点赞 0 评论 457 浏览 评分:0.0
[编程入门]筛选N以内的素数-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,j; scanf("%d",&n); for(i=2;i<=n;i++) { for(j=2;…… 题解列表 2021年01月26日 0 点赞 0 评论 402 浏览 评分:0.0
DNA-题解(C语言代码)巧妙利用二维数组~~ 摘要:#include<stdio.h>int main (){ int n,a,b,i,j; scanf("%d",&n); while (scanf("%d%d",&a,&b)!=EOF) { int…… 题解列表 2021年01月26日 0 点赞 0 评论 556 浏览 评分:0.0
蓝桥杯算法提高VIP-不同单词个数统计-题解(Python代码) 摘要:解题思路:注意事项:参考代码:sentence = input()list_sentence = sentence.split(' ')set_sentence = set(list_…… 题解列表 2021年01月26日 0 点赞 0 评论 463 浏览 评分:0.0
蓝桥杯算法提高VIP-交换Easy-题解(Java代码)简单点的办法 摘要:解题思路:注意事项:import java.util.Scanner; public class test1491 { /** * @param args */ pu…… 题解列表 2021年01月26日 0 点赞 0 评论 618 浏览 评分:0.0