Java 计算器的加减乘除简单运算
2021/11/9 17:10:06
本文主要是介绍Java 计算器的加减乘除简单运算,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
package com.jian.method; import java.util.Scanner; //不要忘了加上此行代码,否则不能定义scanner类 public class Demo06 { //定义scanner用来接收键盘输入的数据 public static Scanner scanner=new Scanner(System.in); //加法运算 public static void jia() { System.out.println("请输入第一个数"); int x = scanner.nextInt(); System.out.println("请输入第二个数"); int y = scanner.nextInt(); System.out.println(x+"+"+y+"的结果为"+(x+y)); } //减法运算 public static void jian() { System.out.println("请输入第一个数"); int x = scanner.nextInt(); System.out.println("请输入第二个数"); int y = scanner.nextInt(); System.out.println(x+"-"+y+"的结果为"+(x-y)); } //乘法运算 public static void cheng() { System.out.println("请输入第一个数"); int x = scanner.nextInt(); System.out.println("请输入第二个数"); int y = scanner.nextInt(); System.out.println(x+"*"+y+"的结果为"+(x*y)); } //除法运算 /* 除法运算,被除数不能为零 */ public static void chu() { System.out.println("请输入第一个数"); int x = scanner.nextInt(); System.out.println("请输入第二个数"); int y = scanner.nextInt(); System.out.println(x+"/"+y+"的结果为"+(x/y)); if(y==0){ System.out.println("不能进行运算"); } else{ System.out.println(x+"/"+y+"的结果为"+(x/y)); } } //i,b都是创建的方法,然后调用i,b方法完成程序的选择与运算 public static void i() { System.out.println("********欢迎来到*********"); System.out.println("******计算器小程序*******"); System.out.println("*************************"); System.out.println("*******1.加法运算********"); System.out.println("*******2.减法运算********"); System.out.println("*******3.乘法运算********"); System.out.println("*******4.除法运算********"); System.out.println("*************************"); System.out.println("请输入您要选择的算法:"); int b = scanner.nextInt(); //使用switch方法调用上面的运算 switch (b) { case 1: jia(); break; case 2: jian(); break; case 3: chu(); break; case 4: cheng(); break; } } //在main方法中调用i方法 public static void main(String[] args) { i(); } }
这篇关于Java 计算器的加减乘除简单运算的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-30java最新版本是什么,有什么特性?-icode9专业技术文章分享
- 2024-11-30[开源]27.8K star!这款 Postman 替代工具太火了!
- 2024-11-30Gzip 压缩入门教程:轻松掌握文件压缩技巧
- 2024-11-29开源工具的魅力:让文档管理更“聪明”
- 2024-11-29Release-it开发入门教程
- 2024-11-29Rollup 插件入门教程:轻松掌握模块打包
- 2024-11-29从零到一,产品经理如何玩转项目管理和团队协作
- 2024-11-29如何通过精益生产管理工具帮助项目团队实现精准进度控制?
- 2024-11-29低代码应用开发课程:新手入门与基础教程
- 2024-11-29入门指南:全栈低代码开发课程