蓝桥杯算法提高VIP-乘法运算 (C++代码)
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;const int maxn=100000;int main(){ int a,b……
蓝桥杯算法提高VIP-乘法运算
摘要:解题思路:注意事项:参考代码:m,n=map(int,input().strip().split())
g=s=yh=er=jg=0
g=n%10
s=n//10
yh=m*g
er=s*m……
蓝桥杯算法提高VIP-乘法运算 (C语言代码)
摘要:解题思路:注意事项:输出限制????参考代码:#include<stdio.h>main(){ int t,n,a,b,i,j; while(scanf("%d%d",&a,&b)) { ……
蓝桥杯算法提高VIP-乘法运算-题解(C语言代码)
摘要:## 解题思路:
输入两个100以内的整数,进行乘法运算,输出运算过程,先输入两个数,a,b,当b为个位数时,输出axb和axb的值。当b能被十整除时,分两种情况a大于等于10时,输出a*b以及第二……
蓝桥杯算法提高VIP-乘法运算 (C++代码)
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;int main(){ int n,m; int a,b……
蓝桥杯算法提高VIP-乘法运算 (C语言代码)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
int main()
{
int a,b;
while(~scanf("%d%d", &a, &b))
{……
蓝桥杯算法提高VIP-乘法运算 (C++代码)水一波
摘要:解题思路:注意事项:参考代码:#include<iostream>
#include<cstdio>
using namespace std;
int a,b;
int l,p;
int m……
蓝桥杯算法提高VIP-乘法运算 (C语言代码)
摘要:解题思路: 这里给的样例有点坑,其实就按照我们平时的乘法即可。每一个都占4位输出。注意×是中文符号,占了2个字符。注意事项:需要注意的是,例如 24*20,这种情况第4行是显示“ 00”的哦。参考代……
蓝桥杯算法提高VIP-乘法运算 (C++代码)(瞎写的,不知道为什么错)
摘要:解题思路:瞎写的,不知道为什么错......注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <ve……