码迷,mamicode.com
首页 > 其他好文 > 详细

【字符串】537. 复数乘法

时间:2020-05-04 13:49:29      阅读:58      评论:0      收藏:0      [点我收藏+]

标签:res   substr   pre   inf   image   乘法   lex   nbsp   img   

题目:

技术图片

 

 

 

解答:

技术图片

 

 

 1 class Solution {
 2 public:
 3     string complexNumberMultiply(string a, string b) 
 4     {
 5         int a1 = stoi(a);
 6         int b1 = stoi(b);
 7 
 8         int i = 0;
 9         int j = 0;
10 
11         while (a[i] != +) 
12         {
13             i++;
14         }
15         while (b[j] != +)
16         {
17             j++;
18         }
19 
20         a = a.substr(i + 1);
21         b = b.substr(j + 1);
22         int a2 = stoi(a);
23         int b2 = stoi(b);
24 
25         string res1 = to_string(a1 * b1 - a2 * b2);
26         string res2 = to_string(a1 * b2 + a2 * b1);
27         
28         return res1 + "+" + res2 + "i";
29     }
30 };

 

技术图片

 

【字符串】537. 复数乘法

标签:res   substr   pre   inf   image   乘法   lex   nbsp   img   

原文地址:https://www.cnblogs.com/ocpc/p/12826049.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!