题解 | #简单运算#
简单运算
https://www.nowcoder.com/practice/6817945637dd4a31811d38313653e967
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int a = scanner.nextInt();
int b = scanner.nextInt();
scanner.close();
//write your code here......
if(a>b){
System.out.print(a + b + " " + Math.abs(a - b) + " "
+ (a*b) + " " + (a/b) + " " + (a%b));
}else{
System.out.print(a + b + " " + Math.abs(a - b) + " "
+ (a*b) + " " + (b/a) + " " + (b%a));
}
}
}
查看8道真题和解析