Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- =======================> Method without arguments
- public class Add {
- void addTwo(){
- System.out.println("Total is ");
- }
- }
- =======================> Method with arguments
- public class Add {
- String addTwo(String first, String second){
- return first + second;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment