-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClass5.java
More file actions
20 lines (19 loc) · 808 Bytes
/
Class5.java
File metadata and controls
20 lines (19 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
public class Class5 {
public static void main(String[] args){
System.out.println("The Recipe to make a Pizza: ");
Pizza();
}
public static void Pizza(){
System.out.println("1. Take a Pizza Dough");
System.out.println("2. Add Pizza Sauce");
System.out.println("3. Add Cheese Layerings");
System.out.println("4. Cover with Veggies");
System.out.println("5. Put it in an Oven");
System.out.println("6. Wait for some time!");
System.out.println("7. Take it out of the Oven");
System.out.println("8. Put some Oreganoe on it");
System.out.println("---------------------------");
System.out.println("Now Enjoy your Pizza with sauce !!!");
System.out.println("---------------------------");
}
}