#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){
System.out.println("Happy Birthday to you!");
System.out.printf("Happy Birthday dear %s!\n", name);
System.out.printf("You are %d years old!\n", age);
System.out.println("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;
}
}
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){
System.out.println("Happy Birthday to you!");
System.out.printf("Happy Birthday dear %s!\n", name);
System.out.printf("You are %d years old!\n", age);
System.out.println("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;
}
}
- Category
- Bro Code
- Tags
- java tutorial, java course, java programming

Be the first to comment