Java Sip for the day – 7th October 2019

Java program to perform basic operations

public class Operator{

    public static void main(String[] args) {
       int a = 10;
       int b = 5;

                int add = a+b;
		int sub = a-b;
		int mul = a*b;
		int div = a/b;
		int mod = a%b;
		
		System.out.println(add);
		System.out.println(sub);
		System.out.println(mul);
		System.out.println(div);
		System.out.println(mod);

    }

}

Statistics for September 2019 – MOHANMA.COM

Unique visitors for MOHANMA.COM in September 2019 is 1403.

Number of visits between September 1 to September 30 is 4054.

18th September 2019 clocked the highest number of hits in a day for September 2019 – 2,630.

Average hits received per day for September 2019 is 1,300.

Thank you all for visiting the website.