Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class belajarfor {
- public static void main(String[] args) {
- System.out.println("Vocation Planing");
- for(int voc = 1 ; voc <= 4 ; voc++) {
- System.out.printf("Planing no %d : ",voc);
- for(int w = 1 ; w <= 4 ; w++) {
- if(voc == 1) {
- System.out.print("Labuan Bajo");
- break;
- }else if(voc == 2) {
- System.out.print("Raja Ampat");
- break;
- }else if(voc == 3) {
- System.out.print("Toraja");
- break;
- }else {
- System.out.print("Mahameru");
- break;
- }
- }
- System.out.println();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment