Giter Club home page Giter Club logo

java_code's People

Watchers

James Cloos avatar cookie_monster avatar

java_code's Issues

Count the time that a character appears in a String

The following function prints out the times that a character appears in a string.
Input: String s, char a

public static void count(String s, char a) {
        int index = 0;
        int count = 0;
        int n = s.length();
        while(index < n) {
            if(s.charAt(index) == a) {
                count = count + 1;
            }
            index = index + 1;
        }
        System.out.println(a + " appears " + count + " times in String: " + s);
    }

Running example for string "This is just a test!".

s appears 4 times in String: This is just  a test!

Print each letter in a String line by line

class HelloWorld {
    public static void main(String[] args){
        String a = "This is just  a test!";
        traverse(a);
    }

    public static void traverse(String s){
        int index  = 0;
        int n = s.length();
        while(index < n) {
            char k = s.charAt(index);
            System.out.println(k);
            index = index + 1;
        }
    }
}

Notice how to write while loop. the method length returns the length of a string, and the range of charAt() is from 0 to length-1.
The running result.

run:
T
h
i
s

i
s

j
u
s
t


a

t
e
s
t
!

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.