蓝桥杯历届试题-买不到的数目 (C++代码) 摘要:解题思路:套公式即可。注意事项:参考代码:#include<iostream> using namespace std; int main() { int m,n; cin>…… 题解列表 2018年03月10日 0 点赞 0 评论 910 浏览 评分:0.0
蓝桥杯历届试题-买不到的数目 (C语言代码) 摘要:解题思路:枚举所有可能的数字注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d%d",&a,&b); int ta,tb; for(in…… 题解列表 2018年02月24日 1 点赞 0 评论 1062 浏览 评分:0.0
蓝桥杯历届试题-买不到的数目 (C语言代码) 摘要:#include <stdio.h> int main() { int n,m,sum,tem; scanf("%d%d",&n,&m); sum = n*m; tem = sum…… 题解列表 2017年12月13日 4 点赞 6 评论 1710 浏览 评分:8.4
买不到的数目 (C语言代码) 摘要:解题思路:一个公式,两个数最大不能组合的数为两个数之积减去两个数之和。注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d%d…… 题解列表 2017年10月31日 25 点赞 20 评论 3195 浏览 评分:8.3
买不到的数目 (C++代码) 摘要:#include<iostream> using namespace std; int main() { int a,b; while(cin>>a>>b)cout<<a*b…… 题解列表 2017年08月31日 0 点赞 1 评论 977 浏览 评分:4.0