蓝桥杯2022年第十三届省赛真题-纸张尺寸 摘要:解题思路:将十张纸的长宽用数组来存参考代码: #include <iostream>using namespace std;int main(int argc, char *argv[]){ int …… 题解列表 2024年05月21日 0 点赞 0 评论 147 浏览 评分:9.9
2680: 蓝桥杯2022年第十三届省赛真题-纸张尺寸 摘要:解题思路:判断几次,折几次。注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { string a; c…… 题解列表 2022年07月02日 0 点赞 0 评论 390 浏览 评分:9.9
纸张尺寸C++ 摘要:```cpp #include using namespace std; int main() { string s; cin>>s; int sz=s[1]-'0'…… 题解列表 2022年05月13日 0 点赞 0 评论 461 浏览 评分:9.9
纸张尺寸--超级精简 摘要:参考代码:#include <bits/stdc++.h> using namespace std; int main(){ //超级精简的一个方法 char a; int b; …… 题解列表 2023年03月12日 0 点赞 0 评论 339 浏览 评分:9.9
#C++2680——蓝桥杯2022年第十三届省赛真题-纸张尺寸 摘要:解题思路:由题意可得出:从A1开始,满足规律:length[i]=wide[i-1]wide[i]=length[i-1]/2;按照规律构造答案即可;******按规律办事******参考代码:#in…… 题解列表 2023年03月17日 0 点赞 0 评论 284 浏览 评分:9.5
只会暴力,在cmd窗口输入calc调出计算器一个一个算 摘要:#include <iostream> using namespace std; int main() { string s; cin>>s; if(s[1]==&…… 题解列表 2022年04月18日 0 点赞 0 评论 343 浏览 评分:8.0
大家就这样看看把。。。 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ string str1; cin>>str1; in…… 题解列表 2022年04月15日 0 点赞 1 评论 847 浏览 评分:7.3
2680: 蓝桥杯2022年第十三届省赛真题-纸张尺寸 摘要:解题思路: 在这段代码中,int s = int(str1[1])-48; 的目的是将输入的字符串中的第二个字符转换为整数。这是因为输入的字符串表示的是一个数字,而不是一个…… 题解列表 2024年03月12日 0 点赞 0 评论 224 浏览 评分:6.0
最简单写法c++ 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int h = 1189; int t = h; int w = 84…… 题解列表 2023年10月28日 0 点赞 0 评论 124 浏览 评分:0.0
纸张尺寸(C++) 摘要:#include<iostream> using namespace std; int main() { int index = 0; string paper_type…… 题解列表 2024年03月10日 0 点赞 0 评论 94 浏览 评分:0.0