服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|编程技术|正则表达式|

服务器之家 - 编程语言 - JAVA教程 - Java对象简单实用案例之计算器实现代码

Java对象简单实用案例之计算器实现代码

2020-07-05 13:27Bigerf JAVA教程

这篇文章主要为大家详细介绍了Java对象简单实用案例之计算器实现代码

Java中的对象与属性,方法的使用,简单写了个案例

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import java.util.Scanner;
class Calculste
{
 int a; //定义两个整数
 int b;
 String option; //定义接收操作符的字符串
 public void count(){
 
  //对操作符进行判断
  switch(option){
   case "+":
    System.out.println("计算和:"+a+"+"+b+"="+(a+b));
   break;
 
   case "-":
    System.out.println("计算差:"+a+"-"+b+"="+(a-b));
   break;
 
   case "*":
    System.out.println("计算积:"+a+"*"+b+"="+(a*b));
   break;
 
   case "/":
   {
    //作除法运算时,分母不能为 0
    if (b != 0)
    {
     System.out.println("计算商:"+a+"/"+b+"="+(a/b));
    }else{
     System.out.println("您输入的第二个数不能为 0,请重新输入");
    }
   }
   break;
 
   case "%":
    System.out.println("计算余:"+a+"%"+b+"="+(a%b));
   break;
 
   default:
    System.out.println("您输入的操作符有误,请重新输入");
  }
  
 }
}
class demo3
{
 //需求: 使用java类描述一个计算器类,计算器具备操作数1, 操作数2 、操作符三个公共 的属性,还具备计算的功能行为。
 public static void main(String[] args)
 {
  System.out.println("两个数的运算");
  Scanner sca = new Scanner(System.in);
 
  //创建类的对象
  Calculste cal = new Calculste();
 
  //给属性赋值
  System.out.println("第一个数:");
  cal.a = (int)sca.nextInt();
 
  System.out.println("第二个数:");
  cal.b = (int)sca.nextInt();
 
  System.out.println("输入运算符号:");
  cal.option = sca.next(); //接受字符的方法
  
  //调用方法运算
  cal.count();
 }
}

这里是在控制台的一些效果:

Java对象简单实用案例之计算器实现代码

 陌陌说:java语言是面向对象的编程语言,类,类中的对象,对象的属性和方法 都是相当重要的。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

延伸 · 阅读

精彩推荐