马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本帖最后由 糖逗 于 2020-4-20 20:20 编辑
题目描述:给定两个表示复数的字符串。
返回表示它们乘积的字符串。注意,根据定义 i2 = -1 。
示例 1:
输入: "1+1i", "1+1i"
输出: "0+2i"
解释: (1 + i) * (1 + i) = 1 + i2 + 2 * i = 2i ,你需要将它转换为 0+2i 的形式。
示例 2:
输入: "1+-1i", "1+-1i"
输出: "0+-2i"
解释: (1 - i) * (1 - i) = 1 + i2 - 2 * i = -2i ,你需要将它转换为 0+-2i 的形式。
注意:
输入字符串不包含额外的空格。
输入字符串将以 a+bi 的形式给出,其中整数 a 和 b 的范围均在 [-100, 100] 之间。输出也应当符合这种形式。
通过次数5,063提交次数
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/complex-number-multiplication
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
string complexNumberMultiply(string a, string b) {
int a1=0,b1=0,a2=0,b2=0, resa, resb;
sscanf(a.c_str(), "%d+%di", &a1, &b1);
sscanf(b.c_str(), "%d+%di", &a2, &b2);
resa = (a1*a2) + (b1)*(b2)*(-1);
resb = (a1*b2) + (a2*b1);
string res = to_string(resa) + "+" + to_string(resb)+"i";
return res;
}
注意事项:
1.这道题考察读数问题。
2.scanf参考链接:https://blog.csdn.net/jeffasd/article/details/80705487
https://blog.csdn.net/yanerhao/article/details/47319943
|