1046: [编程入门]自定义函数之数字后移 摘要:解题思路:注意事项:参考代码:n = int(input())lis = list(map(int, input().split()))m = int(input())for i in range(m…… 题解列表 2022年02月22日 0 点赞 0 评论 327 浏览 评分:0.0
1049: [编程入门]结构体之时间设计 摘要:解题思路:先给出大致公式,然后再细分不同的情况进行处理注意事项:参考代码:y, m, d = map(int, input().split())num = 30*(m-1) + dfor i in r…… 题解列表 2022年02月22日 0 点赞 0 评论 415 浏览 评分:0.0
1211: 平方和与立方和 摘要:解题思路:注意事项:参考代码:while True: try: A,B=map(int,input().split()) pin,li=0,0 …… 题解列表 2022年02月22日 0 点赞 0 评论 697 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:n = eval(input())s = []for i in range(n): s.append(input())for i in s: l = '…… 题解列表 2022年02月22日 0 点赞 0 评论 385 浏览 评分:0.0
expose 字符串的查找删除 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>Print(char string[]){ int len=strlen(string); for(…… 题解列表 2022年02月22日 0 点赞 0 评论 393 浏览 评分:0.0
蓝桥杯2013年第四届真题-打印十字图(Java解法) 摘要: **点击图标“ import java.util.Scanner; //打印十字图 public class Main{ static char[]…… 题解列表 2022年02月22日 0 点赞 0 评论 402 浏览 评分:0.0
二级C语言-最小绝对值 摘要:解题思路:注意事项:参考代码:a=list(map(int,input().split()))b=[abs(i) for i in a]index=b.index(min(b))a[index],a[…… 题解列表 2022年02月22日 0 点赞 0 评论 422 浏览 评分:0.0
编写题解 1213: 幸运儿(python代码) 摘要:解题思路:注意事项:参考代码:while True: try: n=int(input()) ls=list(range(1,n+1)) …… 题解列表 2022年02月22日 0 点赞 0 评论 502 浏览 评分:0.0
java简短算法 摘要:解题思路:注意事项:参考代码:public class Main { public static void main(String[] args) { Scanner sc = n…… 题解列表 2022年02月22日 0 点赞 0 评论 354 浏览 评分:0.0
二维线段树与四叉树 摘要: 没用离散化地二维线段树和四叉树都被我卡掉了,故这里不放我的代码了。…… 题解列表 2022年02月22日 0 点赞 0 评论 623 浏览 评分:0.0