题解 2680: 蓝桥杯2022年第十三届省赛真题-纸张尺寸

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

纸张尺寸C++

摘要:```cpp #include using namespace std; int main() { string s; cin>>s; int sz=s[1]-'0'……

纸张尺寸--超级精简

摘要:参考代码:#include <bits/stdc++.h> using namespace std; int main(){ //超级精简的一个方法 char a; int b; ……

大家就这样看看把。。。

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    string str1;    cin>>str1;    in……

2680: 蓝桥杯2022年第十三届省赛真题-纸张尺寸

摘要:解题思路:               在这段代码中,int s = int(str1[1])-48; 的目的是将输入的字符串中的第二个字符转换为整数。这是因为输入的字符串表示的是一个数字,而不是一个……

最简单写法c++

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int h = 1189; int t = h; int w = 84……

纸张尺寸(C++)

摘要:#include<iostream> using namespace std; int main() {     int index = 0;     string paper_type……