1009,好懂的方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a,b,c,d,e,f,g; scanf("%d",&a);…… 题解列表 2021年11月12日 0 点赞 0 评论 454 浏览 评分:0.0
1481: 蓝桥杯算法提高VIP-剪刀石头布(python) 摘要:解题思路:注意事项:参考代码:a,b=map(int,input().split())if a == b: print("0")elif (a == 0 and b == 2) or (a ==…… 题解列表 2021年11月12日 0 点赞 0 评论 603 浏览 评分:0.0
1014,好懂的方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n;long long s=0,b=1; scanf("%d",&n); for(…… 题解列表 2021年11月12日 0 点赞 0 评论 499 浏览 评分:0.0
自定义函数之整数处理 摘要:解题思路:注意事项:参考代码:def input_(): a=list(map(int,input().split())) deal(a)def deal(x): x.sort() …… 题解列表 2021年11月12日 0 点赞 0 评论 432 浏览 评分:0.0
基础解法(三个函数找最大值) 摘要:解题思路:定义函数——输入其中三个函数——if语句——输出注意事项:定义是定义四个变量,不是三个,因为第四个变量当一个a与b比较结果的载体,不然又得编写多的if语句参考代码:#include<stdi…… 题解列表 2021年11月12日 0 点赞 0 评论 402 浏览 评分:0.0
蓝桥杯算法提高VIP-高精度乘法python(三行代码) 摘要:参考代码:x = int(input()) y = int(input()) print(x*y)…… 题解列表 2021年11月12日 0 点赞 0 评论 458 浏览 评分:0.0
JAVA 有需要的可以参考一下 小白一枚。 摘要: import java.math.BigInteger; import java.util.Arrays; import java.util.Scanner; import java.uti…… 题解列表 2021年11月12日 0 点赞 0 评论 848 浏览 评分:0.0
1024: [编程入门]矩阵对角线求和 摘要:解题思路:题目怎么描述,我们怎么做注意事项:注意函数scanf的输入格式参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int a,b…… 题解列表 2021年11月12日 0 点赞 0 评论 803 浏览 评分:0.0
2247,好懂的方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,e; scanf("%d%d%d",&a,&b,&c); d=a>b?a:b; d=c>…… 题解列表 2021年11月12日 0 点赞 0 评论 531 浏览 评分:0.0
1025: [编程入门]数组插入处理 摘要:解题思路:运用迭代思想注意事项:先画流程图理清思路,关键是将第二行的数按正序插入第一行中,我们采用迭代的方法,将插入的数放入score【9】中,然后将score【9】与score【8】,score【7…… 题解列表 2021年11月12日 0 点赞 0 评论 432 浏览 评分:0.0