#java #javatutorial #javacourse 00:00:00 introduction 00:01:38 methods 00:03:37 arguments 00:04:37 parameters 00:08:23 return 00:10:30 example 2 00:11:10 example 3 00:12:41 example 4 public class Main { public static void main(String[] args){ // method = a block of reusable code that is executed when called () happyBirthday("Spongebob", 30); } static void happyBirthday(String name, int age){ ("Happy Birthday to you!"); ("Happy Birthday dear %s!\n", name); ("You are %d years old!\n", age); ("Happy Birthday to you!\n"); } static double square(double number){ return number * number; } static double cube(double number){ return number * number * number; } static String getFullName(String first, String last){ return first + " " + last; } }










