解题思路:
注意事项:
参考代码:
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int m=sc.nextInt();
int a=sc.nextInt();
char op=sc.next().charAt(0);
int n=sc.nextInt();
int b=sc.nextInt();
if(op=='-'){
System.out.print(m-n);
if(Math.abs((a-b))!=0){
System.out.print((((a-b)<0)?"-":"+")+Math.abs((a-b))+"i");
}
}
else {
System.out.print(m+n);
if(Math.abs((a+b))!=0){
System.out.printf((((a+b)<0)?"-":"+")+Math.abs((a+b))+"i");
}
}
}
}
0.0分
2 人评分
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:583 |
C语言程序设计教程(第三版)课后习题5.5 (C语言代码)浏览:577 |
C语言程序设计教程(第三版)课后习题7.2 (C语言代码)浏览:686 |
C二级辅导-分段函数 (C语言代码)浏览:659 |
钟神赛车 (C语言代码)浏览:665 |
找出最长的字符串来 (C语言代码)浏览:1840 |
【计算直线的交点数】 (C语言代码)浏览:984 |
C语言训练-列出最简真分数序列* (C语言代码)浏览:658 |
C二级辅导-等差数列 (C语言代码)浏览:831 |
字符串对比 (C++代码)浏览:597 |