Category: Java
Actually we use this method to split string from a big sentence using regex. https://howtoprogramwithjava.com/string-manipulation/
https://www.ntu.edu.sg/home/ehchua/programming/java/J3a_OOPBasics.html
Here yo can see what is triangular number: https://en.wikipedia.org/wiki/Triangular_number public class NumShape { public static void main(String[]…
Packages are used in Java in order to prevent naming conflicts,to control access, to make seraching/locating and…
Interface is a collection of abstract methods.A class implements an interface, thereby inheriting the abstract method of…
code: class Operation{ int square(int n){ return n*n; } } class Circle{ Operation op;//aggregation double pi=3.14; double…
Recent Comments