/** * 作业:从命令行输入两个数字,计算得到两个数字的和差积商 * 姓名:王晓旺 * 学号:2014011739 * 班级:5班 */ package com.works.www; import java.util.Scanner; public class Operation { public static void main(String[] args) { // TODO Auto-generated method stub System.out.println("请输入两个数:"); @SuppressWarnings("resource") Scanner s = new Scanner(System.in); int x = s.nextInt(); int y = s.nextInt(); int a, b, c; float d; a = x + y; b = x - y; c = x * y; System.out.println(x + "+" + y + "=" + a); System.out.println(x + "-" + y + "=" + b); System.out.println(x + "*" + y + "=" + c); if (y == 0) System.out.println("除数不能为0"); else { d = (float) x / y; System.out.println(x + "/" + y + "=" + d); } } }
作业01:数字运算
10
分
任务尚未发布或者你没有权限查看任务内容。
任务讨论