2680: 蓝桥杯2022年第十三届省赛真题-纸张尺寸 摘要:解题思路:注意事项:#include <stdio.h>#include <stdlib.h>int main(){ int n; &nb…… 题解列表 2025年03月04日 0 点赞 0 评论 222 浏览 评分:10.0
蓝桥杯2022年第十三届省赛真题-纸张尺寸 摘要:解题思路:注意事项:参考代码:s = input().strip()n = int(s[1])a = 1189b = 841for i in range(n): a = a//2 if a…… 题解列表 2024年08月12日 1 点赞 0 评论 349 浏览 评分:0.0
蓝桥杯2022年第十三届省赛真题-纸张尺寸 摘要:解题思路:将十张纸的长宽用数组来存参考代码: #include <iostream>using namespace std;int main(int argc, char *argv[]){ int …… 题解列表 2024年05月21日 0 点赞 0 评论 312 浏览 评分:9.9
纸张尺寸,递归解决(python) 摘要: lw函数矫正当前长宽 cal函数递归解决,An就是重复折叠n次,n=0时结束 ``` def lw(l,w): return max(l,w),min(l,w) de…… 题解列表 2024年04月12日 2 点赞 0 评论 287 浏览 评分:9.9
C语言题解 纸张尺寸 模拟 摘要:解题思路:用for模拟一下就行已经有大佬提前分析这个题了。我只是用来记录一下参考代码:#include <stdio.h> #include <string.h> #include <math.h…… 题解列表 2024年04月10日 1 点赞 0 评论 217 浏览 评分:0.0
Java题解:暴力解法 摘要:解题思路:注意事项:参考代码:package com.test.eazy;import java.util.Scanner;public class eazy14 { public static…… 题解列表 2024年03月29日 0 点赞 0 评论 202 浏览 评分:0.0
观察最长边最短边 摘要:解题思路:先顺题意写几个例子,观察一下,发现最长边除以二变成下一个纸张的最短边,最短边变成下一张纸张的最长边注意事项:用String s=sc.next();输入纸张代号,要知道是第几张要用字符串ch…… 题解列表 2024年03月15日 0 点赞 0 评论 121 浏览 评分:0.0
2680: 蓝桥杯2022年第十三届省赛真题-纸张尺寸 摘要:解题思路: 在这段代码中,int s = int(str1[1])-48; 的目的是将输入的字符串中的第二个字符转换为整数。这是因为输入的字符串表示的是一个数字,而不是一个…… 题解列表 2024年03月12日 1 点赞 0 评论 275 浏览 评分:10.0
纸张尺寸(C++) 摘要:#include<iostream> using namespace std; int main() { int index = 0; string paper_type…… 题解列表 2024年03月10日 0 点赞 0 评论 140 浏览 评分:0.0
省赛真题-纸张尺寸o_O 摘要:解题思路:注意事项:参考代码:size=input()a=int(size[1])length=1189width=841for i in range(a): length=length//2 …… 题解列表 2024年02月18日 0 点赞 0 评论 113 浏览 评分:0.0