题解 | #简单运算#
简单运算
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)+" "+(a-b)+" "+(a*b)+" "+(a/b)+" "+(a%b)); } else{ System.out.print((b+a)+" "+(b-a)+" "+(a*b)+" "+(b/a)+" "+(b%a)); } } }