优质题解 WU-蓝桥杯算法提高VIP-乘法运算 (C++代码)(唯一题解!!!!) 摘要:解题思路:这题的关键在于乘号 以及下划线 你要直接去复制样例里面的 因为这些是特殊符号 你打印不出来 然后注意每个数字的输出位数 要注意位数的对齐 附上两个样例 5 × 2 ━━…… 题解列表 2017年12月12日 11 点赞 2 评论 1950 浏览 评分:8.9
蓝桥杯算法提高VIP-乘法运算 (C++代码) 摘要:#include<iostream> #include<iomanip> using namespace std; int main(){ int a,b; while(ci…… 题解列表 2017年12月18日 1 点赞 0 评论 687 浏览 评分:0.0
蓝桥杯算法提高VIP-乘法运算 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int a,b; while(cin>>a>>b)…… 题解列表 2018年04月17日 0 点赞 0 评论 532 浏览 评分:0.0
蓝桥杯算法提高VIP-乘法运算 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;int main(){ int n,m; int a,b…… 题解列表 2018年08月01日 0 点赞 0 评论 538 浏览 评分:0.0
蓝桥杯算法提高VIP-乘法运算 (C++代码)按部就班 摘要:解题思路:数字其实都是有4个域宽的,只要知道是4个域宽那就好办了如:域宽我这里用#表示,×这个符号占了2个##### ####× ##   题解列表 2018年08月16日 14 点赞 0 评论 999 浏览 评分:0.0
蓝桥杯算法提高VIP-乘法运算 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;const int maxn=100000;int main(){ int a,b…… 题解列表 2018年11月14日 0 点赞 0 评论 321 浏览 评分:0.0
蓝桥杯算法提高VIP-乘法运算 (C++代码)(瞎写的,不知道为什么错) 摘要:解题思路:瞎写的,不知道为什么错......注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <ve…… 题解列表 2018年11月30日 0 点赞 0 评论 346 浏览 评分:0.0
蓝桥杯算法提高VIP-乘法运算 (C++代码)水一波 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> using namespace std; int a,b; int l,p; int m…… 题解列表 2019年03月31日 0 点赞 0 评论 389 浏览 评分:0.0
蓝桥杯乘法运算-题解(C++代码) 答案错误20%看过来 摘要:1.乘号和下划线需直接复制 2.由于本题是的乘数与被乘数中只有两位数和一位数,所以过程与结果不会超过4位,所以printf("%4d\n",...)可控制本题格式,使得个位数对齐 3.在结果7行的…… 题解列表 2019年12月01日 0 点赞 2 评论 453 浏览 评分:9.9
1489: 蓝桥杯算法提高VIP-乘法运算(c++版) 摘要: ```cpp #include using namespace std; int main() { int a, b; cin >> a >> b…… 题解列表 2022年02月16日 0 点赞 0 评论 169 浏览 评分:9.9