Code Monkey home page Code Monkey logo

Just Try this code in Java Playgound :

public class Profile {

    public static void main(String[] args) {
    
        String name = "Rohesa Sidiq Permana";
        String[] interestedIn = {"PHP","Java","JavaScript","Dart"};
        String[] learning = {"PHP","Java","PostgreSQL","MySQL","HTML","CSS","JavaScript","Dart"};
        
        System.out.println(" Hi, I'm " + name + "\n");
        
        System.out.print(" I'm interested in ");

        for (int i = 0; i < interestedIn.length; i++) {
            if ( i < (interestedIn.length - 1)) System.out.print(interestedIn[i]+", ");
            if ( i == (interestedIn.length - 1)) System.out.print("And "+interestedIn[i]+" \n");
        }

        System.out.print("\n I'm currently learning ");

        for (int i = 0; i < learning.length; i++) {
            if ( i < (learning.length - 1)) System.out.print(learning[i]+", ");
            if ( i == (learning.length - 1)) System.out.print("And "+learning[i]+" \n");
        }
        
    }
    
}

Rohesa Sidiq Permana's Projects

web-app icon web-app

Mifos X Web App is the revamped version of the Mifos X Community App built on top of the Fineract Platform leveraging the popular Angular framework.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.