博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
题目39:特殊乘法
阅读量:5204 次
发布时间:2019-06-13

本文共 545 字,大约阅读时间需要 1 分钟。

http://ac.jobdu.com/problem.php?cid=1040&pid=38

题目描述:

写个算法,对2个小于1000000000的输入,求结果。

特殊乘法举例:123 * 45 = 1*4 +1*5 +2*4 +2*5 +3*4+3*5

输入:

 两个小于1000000000的数

输出:

 输入可能有多组数据,对于每一组数据,输出Input中的两个数按照题目要求的方法进行运算后得到的结果。

样例输入:
123 45
样例输出:
54

// 题目39:特殊乘法.cpp: 主项目文件。#include "stdafx.h"#include 
int distinctMulitply(int a,int b){ int arrA[11],arrB[11]; int cntA=0,cntB=0; while(a) { arrA[cntA++]=a%10; a/=10; } while(b) { arrB[cntB++]=b%10; b/=10; } int res=0; for(int i=0;i

转载于:https://www.cnblogs.com/cjweffort/archive/2013/03/05/3374903.html

你可能感兴趣的文章