Ví dụ hiển thị các phép tính của hai biến trong Java. | Java Example - Performing Arithmetic Opration On Two Variable.

Bài viết này cung cấp một ví dụ đơn giản hiển thị tất các phép tính toán học cơ bản trong Java của hai số
Here is a Program to Perform the Arithmetic Operation between two Variable


IntOps.java

public class IntOps {  
 
    public static void main(String[] args) { 
        /*
        * Here we have used parstInt method to convert string to integer
        */ 
        int a = Integer.parseInt(args[0]); 
        int b = Integer.parseInt(args[1]); 
        int sum  = a + b; 
        int prod = a * b; 
        int quot = a / b; 
        int rem  = a % b; 

        System.out.println(a + " + " + b + " = " + sum); 
        System.out.println(a + " * " + b + " = " + prod); 
        System.out.println(a + " / " + b + " = " + quot); 
        System.out.println(a + " % " + b + " = " + rem); 
        System.out.println(a + " = " + quot + " * " + b + " + " + rem); 
    } 


Result - Kết Quả:

% java IntOps 10 3
    10 + 3 = 13
    10 * 3 = 30
    10 / 3 = 3
    10 % 3 = 1
    10 = 3 * 3 + 1











No comments:

Post a Comment